コード例 #1
0
ファイル: Gohan.cs プロジェクト: asherrna/SeriousChallenge
 public IdleState(Gohan auto)
     : base(auto)
 {
     // define the standing still frame
     //stillFrame = new Point(14, 0);
 }
コード例 #2
0
ファイル: Gohan.cs プロジェクト: asherrna/SeriousChallenge
 public JumpingState(Gohan auto)
     : base(auto)
 {
 }
コード例 #3
0
ファイル: Gohan.cs プロジェクト: asherrna/SeriousChallenge
 protected AbstractState(Gohan auto)
 {
     this.auto = auto;
 }
コード例 #4
0
ファイル: Gohan.cs プロジェクト: asherrna/SeriousChallenge
 public RunningState(Gohan auto)
     : base(auto)
 {
 }