コード例 #1
0
ファイル: StationUI.cs プロジェクト: dkdknight/nebula
 public StationUI(int stationGId, int planetId, StationUI.UIsettings settingIndex, float value)
 {
     this.stationGId   = stationGId;
     this.planetId     = planetId;
     this.isStorageUI  = false;
     this.settingIndex = settingIndex;
     this.settingValue = value;
     this.isStellar    = true;
 }
コード例 #2
0
ファイル: StationUI.cs プロジェクト: dkdknight/nebula
 public StationUI(int stationGId, int planetId, int storageIdx, StationUI.UIsettings settingIndex, int itemId, int settingValue, bool isStellar)
 {
     this.stationGId   = stationGId;
     this.planetId     = planetId;
     this.settingIndex = settingIndex;
     this.itemId       = itemId;
     this.settingValue = settingValue;
     this.storageIdx   = storageIdx;
     this.isStellar    = isStellar;
 }