コード例 #1
0
ファイル: StateCasting.cs プロジェクト: NarPar/AuctionBoxing
 public StateCasting(State state)
 {
     StateName = "casting";
     this.ATextures = state.StatePlayer.ATextures;
     LoadState(state.StatePlayer, ATextures);
 }
コード例 #2
0
ファイル: StateStopped.cs プロジェクト: NarPar/AuctionBoxing
 public StateStopped(State state)
 {
     StateName = "stopped";
     this.ATextures = state.StatePlayer.ATextures;
     LoadState(state.StatePlayer, ATextures);
 }
コード例 #3
0
ファイル: StateHit.cs プロジェクト: NarPar/AuctionBoxing
 public StateHit(State state)
 {
     StateName = "hit";
     this.ATextures = state.StatePlayer.ATextures;
     LoadState(state.StatePlayer, ATextures);
 }