summaryrefslogtreecommitdiff
path: root/Source/Asura.Framework/GUI/Button.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Framework/GUI/Button.lua')
-rw-r--r--Source/Asura.Framework/GUI/Button.lua19
1 files changed, 17 insertions, 2 deletions
diff --git a/Source/Asura.Framework/GUI/Button.lua b/Source/Asura.Framework/GUI/Button.lua
index 260759b..67d0943 100644
--- a/Source/Asura.Framework/GUI/Button.lua
+++ b/Source/Asura.Framework/GUI/Button.lua
@@ -1,6 +1,21 @@
---
-local Button = AsuraEngine.Component.Sub("Button")
+AsuraEngine.Button = AsuraEngine.Component.Sub("Button")
+local Button = AsuraEngine.Button
+function Button.Ctor(self)
+
+end
+
+function Button.OnEvent(e)
+
+end
+
+function Button.OnRender()
+
+end
+
+function Button.OnUpdate(dt)
+
+end
return Button \ No newline at end of file