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.lua59
1 files changed, 59 insertions, 0 deletions
diff --git a/Source/Asura.Framework/gameobject.lua b/Source/Asura.Framework/gameobject.lua
new file mode 100644
index 0000000..1b328ca
--- /dev/null
+++ b/Source/Asura.Framework/gameobject.lua
@@ -0,0 +1,59 @@
+local GameObject = AsuraEngine.Asset.SubClass("GameObject")
+
+function GameObject:OnEnable()
+
+end
+
+function GameObject:OnEvent(e)
+
+end
+
+function GameObject:OnUpdate(dt)
+
+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
+
+function GameObject:ToAsset()
+
+end
+
+return GameObject \ No newline at end of file