You can not select more than 25 topics 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. }