Exemplo n.º 1
0
 public WildDeltAI(BattleState state)
 {
     State = state;
 }
Exemplo n.º 2
0
 public BattleSetUp(BattleState state)
 {
     TrainerAI = new TrainerAI(state);
     WildAI    = new WildDeltAI(state);
     State     = state;
 }
Exemplo n.º 3
0
 public SwitchDeltAction(BattleState state, DeltemonClass switchIn)
 {
     State    = state;
     SwitchIn = switchIn;
 }