GameDev.CoreSystems/Interfaces/IBuildable.cs

8 lines
148 B
C#

namespace GameDev.CoreSystems
{
public interface IBuildable
{
public int GetCost();
public int SetCost(int newCost);
}
}