public void start(BaseGambit gambit, int difficulty, GameTime gameTime)
 {
     currentGambit = gambit;
     currentGambit.start(gameTime, difficulty);
 }
Exemple #2
0
 public Skill(string name, BaseGambit gambit, PartyUtils.PlayerAction action)
 {
     this.name = name;
     this.gambit = gambit;
     this.action = action;
 }