Ejemplo n.º 1
0
 public JumpCommand(GameObject obj) : base(obj)
 {
 }
Ejemplo n.º 2
0
 public MovementCommand(GameObject obj, sbyte movementX, sbyte movementY) : base(obj)
 {
     X = movementX;
     Y = movementY;
 }
Ejemplo n.º 3
0
 public SpellUseCommand(GameObject obj, int spellId, float angle) : base(obj)
 {
     SpellId = spellId;
     Angle = angle;
 }
Ejemplo n.º 4
0
 public MapInstanceMessage(GameObject obj)
 {
     GameObj = obj;
 }
Ejemplo n.º 5
0
 public RemoveEntityResult(GameObject obj, RemovEntityResultEnum resultCode) : base(obj)
 {
     Code = resultCode;
 }
Ejemplo n.º 6
0
 public AddEntityResult(GameObject obj, AddEntityResultEnum resultCode) : base(obj)
 {
     Code = resultCode;
 }
Ejemplo n.º 7
0
 public RemoveEntity(GameObject obj) : base(obj)
 {
 }
Ejemplo n.º 8
0
 public AddEntity(GameObject obj) : base(obj)
 {
 }