Exemplo n.º 1
0
 public void setState(MovementState state)
 {
     this.state = state;
 }
Exemplo n.º 2
0
 public void setMovementState(MovementState direction)
 {
     this.direction = direction;
 }
Exemplo n.º 3
0
 public void setMovementDirection(MovementState state)
 {
     this.direction = state;
 }
Exemplo n.º 4
0
 public void changeDirection(MovementState move)
 {
     this.direction = move;
 }
Exemplo n.º 5
0
 public Projectile(GameObject gameobject, MovementState movement) : base(gameobject)
 {
     this.movement = movement;
 }