示例#1
0
文件: Battle.cs 项目: loudej/civcalc
 public Battle(Stack attackers, Stack defenders)
 {
     Attackers = attackers;
     Defenders = defenders;
 }
示例#2
0
 public Scenario()
 {
     Stacks = new Dictionary<string, Stack>();
     Attackers = new Stack();
     Defenders = new Stack();
 }