25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
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. }