您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

27 行
370 B

  1. using System;
  2. using SUISSEngine;
  3. using UnityEngine;
  4. public class CIGExpansionDefinition : ScriptableObject
  5. {
  6. public GridIndex Index
  7. {
  8. get
  9. {
  10. return new GridIndex(this.u, this.v);
  11. }
  12. }
  13. public int u;
  14. public int v;
  15. public bool initiallyUnlocked;
  16. public int sceneryItems;
  17. public Island island;
  18. public bool automaticUnlock;
  19. }