Exemplo n.º 1
0
 public FlyCommand(CharacterBird _player)
 {
     player = _player;
 }
Exemplo n.º 2
0
 void Start()
 {
     player = this.GetComponent <CharacterBird>();
 }
Exemplo n.º 3
0
 public MoveCommand(CharacterBird _player, string _dir)
 {
     player = _player;
     dir    = _dir;
 }