コード例 #1
0
ファイル: JumpCommand.cs プロジェクト: alec-bell/MarioGame
 public JumpCommand(playerContext player)
 {
     this.player = player;
 }
コード例 #2
0
 public MoveRightCommand(playerContext player)
 {
     this.player = player;
 }
コード例 #3
0
 public CrouchCommand(playerContext player)
 {
     this.player = player;
 }
コード例 #4
0
 public FireballCommand(playerContext player)
 {
     this.player = player;
 }
コード例 #5
0
ファイル: PauseCommand.cs プロジェクト: alec-bell/MarioGame
 public PauseCommand(playerContext player)
 {
     this.player = player;
 }