diff options
author | chai <chaifix@163.com> | 2019-01-29 21:07:22 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-01-29 21:07:22 +0800 |
commit | 8d6eb73fcd8d42ced53fc4178d4f4fc35c63abf3 (patch) | |
tree | dc4b7503629699b984ee22988e6e163e9c6a1063 /Source/Asura.Framework/GUI | |
parent | 6756fad2ec987b48f9e2afb967d9ba65f117f9b9 (diff) |
*misc
Diffstat (limited to 'Source/Asura.Framework/GUI')
-rw-r--r-- | Source/Asura.Framework/GUI/Button.lua | 19 |
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 |