summaryrefslogtreecommitdiff
path: root/GameCode/IBuildable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GameCode/IBuildable.cs')
-rw-r--r--GameCode/IBuildable.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/GameCode/IBuildable.cs b/GameCode/IBuildable.cs
new file mode 100644
index 0000000..5fcdc7e
--- /dev/null
+++ b/GameCode/IBuildable.cs
@@ -0,0 +1,8 @@
+public interface IBuildable
+{
+ void SetStats();
+
+ void Demolish();
+
+ void SpawnUI();
+}