Exemple #1
0
 public void AddBuyStageStrategy(int round, PeformAction action)
 {
     this.AddBuyStageStrategy(new RoundAction(round, action));
 }
Exemple #2
0
 public RoundAction(int round, PeformAction action)
 {
     this.Round  = round;
     this.Action = action;
 }