using System; using SUISSEngine; using UnityEngine; public class CIGExpansionDefinition : ScriptableObject { public GridIndex Index { get { return new GridIndex(this.u, this.v); } } public int u; public int v; public bool initiallyUnlocked; public int sceneryItems; public Island island; public bool automaticUnlock; }