Exemplo n.º 1
0
 public MoveAction(Vector2 dir, float dist, MoveSets.CheckTypes type)
 {
     this.dir     = dir;
     this.dist    = dist;
     this.maxDist = dist;
     this.type    = type;
 }
Exemplo n.º 2
0
 public MoveAction(Vector2 dir, float dist)
 {
     this.dir     = dir;
     this.dist    = dist;
     this.maxDist = dist;
     this.type    = MoveSets.CheckTypes.Ray;
 }