Felix Boucher 7dba305d30 fixes to berry harvesting
- berry harvester appears on bush tiles
- change berry resource for food instead
- some structural change to reduce bugs
2023-11-12 18:26:36 -05:00

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
}
}