mirror of
https://github.com/zoriya/Magical-Garden.git
synced 2026-05-15 11:25:56 +00:00
21 lines
293 B
C#
21 lines
293 B
C#
[System.Serializable]
|
|
public class Plot
|
|
{
|
|
[EnumFlags]
|
|
public PlotType type;
|
|
public TreeType treePlaced;
|
|
|
|
public int startIndex = -1;
|
|
}
|
|
|
|
[System.Flags]
|
|
public enum PlotType
|
|
{
|
|
Normal = 1,
|
|
Dry = 2,
|
|
Water = 4,
|
|
Brick = 8,
|
|
AdjacentWater = 16,
|
|
Cliff = 32
|
|
}
|