예제 #1
0
 public WildDeltAI(BattleState state)
 {
     State = state;
 }
예제 #2
0
 public BattleSetUp(BattleState state)
 {
     TrainerAI = new TrainerAI(state);
     WildAI    = new WildDeltAI(state);
     State     = state;
 }
예제 #3
0
 public SwitchDeltAction(BattleState state, DeltemonClass switchIn)
 {
     State    = state;
     SwitchIn = switchIn;
 }