예제 #1
0
파일: Battle.cs 프로젝트: loudej/civcalc
 public Battle(Stack attackers, Stack defenders)
 {
     Attackers = attackers;
     Defenders = defenders;
 }
예제 #2
0
파일: Scenario.cs 프로젝트: loudej/civcalc
 public Scenario()
 {
     Stacks = new Dictionary<string, Stack>();
     Attackers = new Stack();
     Defenders = new Stack();
 }