- berry harvester appears on bush tiles - change berry resource for food instead - some structural change to reduce bugs
17 lines
242 B
C#
17 lines
242 B
C#
public class Enum
|
|
{
|
|
public enum ResourceChoice
|
|
{
|
|
Rock = 0,
|
|
Wood = 1,
|
|
Food = 2
|
|
};
|
|
public enum ResourceNodeType
|
|
{
|
|
Rock = 0,
|
|
Forest = 1,
|
|
Farm = 2,
|
|
BerryBush = 3
|
|
}
|
|
}
|