コード例 #1
0
ファイル: Produce.cs プロジェクト: ZoNaDak/Colonize
 internal Produce(BuildingStateController _stateController)
     : base(BuildingActionType.Produce, _stateController)
 {
     if (producePosList.Count == 0)
     {
         CreateProducePos();
     }
 }
コード例 #2
0
 internal BuildingAction(BuildingActionType _type, BuildingStateController _stateController)
     : base(_type)
 {
     this.stateController = _stateController;
     this.controller      = this.stateController.Controller;
 }
コード例 #3
0
ファイル: Harvest.cs プロジェクト: ZoNaDak/Colonize
 internal Harvest(BuildingStateController _stateController)
     : base(BuildingActionType.Produce, _stateController)
 {
 }