summaryrefslogtreecommitdiff
path: root/Source/Asura.Framework/GameObject.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Framework/GameObject.lua')
-rw-r--r--Source/Asura.Framework/GameObject.lua55
1 files changed, 55 insertions, 0 deletions
diff --git a/Source/Asura.Framework/GameObject.lua b/Source/Asura.Framework/GameObject.lua
index e69de29..358ba14 100644
--- a/Source/Asura.Framework/GameObject.lua
+++ b/Source/Asura.Framework/GameObject.lua
@@ -0,0 +1,55 @@
+local GameObject = Class()
+
+function GameObject:OnEnable()
+
+end
+
+function GameObject:OnEvent(e)
+
+end
+
+function GameObject:OnUpdate()
+
+end
+
+function GameObject:OnRender()
+
+end
+
+function GameObject:OnDisable()
+
+end
+
+function GameObject:GetTrasform()
+
+end
+
+function GameObject:GetPosition()
+
+end
+
+function GameObject:GetScale()
+
+end
+
+function GameObject:GetRotation()
+
+end
+
+function GameObject:SetTrasform(transform)
+
+end
+
+function GameObject:SetPosition()
+
+end
+
+function GameObject:SetScale()
+
+end
+
+function GameObject:SetRotation()
+
+end
+
+return GameObject \ No newline at end of file