blob: 67d0943be135b98bf5b975a691b9fbd70c45dee6 (
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.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
|