Ejemplo n.º 1
0
 public EntityState(RecordableObject reference, bool active, Vector3 position, Quaternion rotation, int state) : base(reference, eType.EntityState)
 {
     this.active   = active;
     this.position = position;
     this.rotation = rotation;
     this.state    = state;
 }
Ejemplo n.º 2
0
 public ResetPoint(RecordableObject reference, int index) : base(reference, eType.ResetPoint)
 {
     this.index = index;
 }
Ejemplo n.º 3
0
 public RecordableMove(RecordableObject reference, eType type)
 {
     this.reference = reference;
     this.type      = type;
 }