MaximilienBlanchardBizien1 7f77b3bdb3 Updated building ressource type
Updated the ressource type the buildings have to be an array to account for buildings that produces multiple ressources.
2025-10-12 11:03:37 -04:00

6 lines
214 B
C#

using UnityEngine;
public class Mill : ProductionBuilding
{
protected override Enum.ResourceNodeType[] RessourceNodeType { get { return new Enum.ResourceNodeType[] { Enum.ResourceNodeType.BerryBush }; } }
}