Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- 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;
- }
|