GameDev.CoreSystems/Interfaces/IBuildable.cs

8 lines
153 B
C#

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