Exemplo n.º 1
0
 public EntityInBuffer(Entity entity, EntityCommand command)
 {
     this.entity        = entity;
     this.command       = command;
     this.componentData = null;
 }
Exemplo n.º 2
0
 public static void Free(ComponentDataInBuffer *componentData)
 {
     // TODO: Iterate and free.
 }
Exemplo n.º 3
0
 public EntityInBuffer(Entity entity)
 {
     this.entity        = entity;
     this.command       = EntityCommand.None;
     this.componentData = null;
 }
Exemplo n.º 4
0
 public static void WriteToBuffer <T>(ComponentDataInBuffer *componentData, T value) where T : unmanaged
 {
 }