blob: b12293181bb7b91dc1889c4ef0c2d9595f8af4dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
AsuraEngine.Button = AsuraEngine.Component.Extend("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
|