コード例 #1
0
ファイル: MoneyController.cs プロジェクト: KonH/TheKing
 public MoneyController(CountryController country, TimeController time, CheatController cheats = null)
 {
     _country = country;
     _time    = time;
     _cheats  = cheats;
 }
コード例 #2
0
 public MoveController(TimeController time, ArmyController army)
 {
     _time = time;
     _army = army;
 }