diff options
Diffstat (limited to 'Source/Asura.Framework/scripts/gui/button.lua')
-rw-r--r-- | Source/Asura.Framework/scripts/gui/button.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/Asura.Framework/scripts/gui/button.lua b/Source/Asura.Framework/scripts/gui/button.lua new file mode 100644 index 0000000..67d0943 --- /dev/null +++ b/Source/Asura.Framework/scripts/gui/button.lua @@ -0,0 +1,21 @@ +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 |