summaryrefslogtreecommitdiff
path: root/GameCode/IBuildable.cs
blob: 5fcdc7e4d5b7cdd1dbe66bc8d456eee67436d0e5 (plain)
1
2
3
4
5
6
7
8
public interface IBuildable
{
	void SetStats();

	void Demolish();

	void SpawnUI();
}