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