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