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