Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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;
- }
|