Ejemplo n.º 1
0
 public RelativeWay(Vector2i jumpTo)
     : this()
 {
     JumpTo = jumpTo;
     Way    = RelativeWayDirection.None;
     Range  = 0;
 }
Ejemplo n.º 2
0
 public RelativeWay(int range, RelativeWayDirection way)
     : this()
 {
     Range = range;
     Way   = way;
 }