Beispiel #1
0
 public StateCasting(State state)
 {
     StateName = "casting";
     this.ATextures = state.StatePlayer.ATextures;
     LoadState(state.StatePlayer, ATextures);
 }
Beispiel #2
0
 public StateStopped(State state)
 {
     StateName = "stopped";
     this.ATextures = state.StatePlayer.ATextures;
     LoadState(state.StatePlayer, ATextures);
 }
Beispiel #3
0
 public StateHit(State state)
 {
     StateName = "hit";
     this.ATextures = state.StatePlayer.ATextures;
     LoadState(state.StatePlayer, ATextures);
 }