Exemple #1
0
 public Reinforcement(int province, State.Army army) : base(province, army)
 {
 }
Exemple #2
0
 public Battle(int province, State.Army army) : base(province, army)
 {
 }
Exemple #3
0
 public Attack(int player, int from, State.Province to, State.Army army) : base(player, from, to, army)
 {
 }
 public ArmyAction(int province, State.Army army)
 {
     Province = province;
     Army     = army;
 }
Exemple #5
0
 public Recruit(int player, int land, State.Army army)
 {
     Player = player;
     Land   = land;
     Army   = army;
 }
Exemple #6
0
 public Reinforce(int player, int from, State.Province to, State.Army army) : base(player, from, to, army)
 {
 }