コード例 #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();
 }