コード例 #1
0
ファイル: FishController.cs プロジェクト: Voxsam/8thsea
 public bool IsCurrentResearchProtocol(GameData.StationType stationType)
 {
     if (currentResearchProtocol >= researchProtocols.Length)
     {
         return(false);
     }
     return(!researchProtocols[currentResearchProtocol].complete && (researchProtocols[currentResearchProtocol].researchStation == stationType));
 }
コード例 #2
0
 public ResearchStationParameters(GameData.StationType _researchStation)
 {
     researchStation = _researchStation;
 }
コード例 #3
0
ファイル: FishController.cs プロジェクト: Voxsam/8thsea
 public ResearchProtocol(GameData.StationType _researchStation)
 {
     researchStation = _researchStation;
     complete        = false;
 }