diff options
Diffstat (limited to 'Source/Asura.Framework/gameobject.lua')
-rw-r--r-- | Source/Asura.Framework/gameobject.lua | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/Source/Asura.Framework/gameobject.lua b/Source/Asura.Framework/gameobject.lua deleted file mode 100644 index 1b328ca..0000000 --- a/Source/Asura.Framework/gameobject.lua +++ /dev/null @@ -1,59 +0,0 @@ -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 |