summaryrefslogtreecommitdiff
path: root/engine/CoreObjects/GameObject.go
diff options
context:
space:
mode:
Diffstat (limited to 'engine/CoreObjects/GameObject.go')
-rw-r--r--engine/CoreObjects/GameObject.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/engine/CoreObjects/GameObject.go b/engine/CoreObjects/GameObject.go
new file mode 100644
index 0000000..255a405
--- /dev/null
+++ b/engine/CoreObjects/GameObject.go
@@ -0,0 +1,8 @@
+package coreobjects
+
+type GameObject interface {
+ Create(SceneManager)
+ Destroy()
+ Update()
+ Draw()
+}