blob: 18445d28f304fb69296679ac8d41ec27e328dee5 (
plain)
1
2
3
4
5
6
7
|
ui = require("ui")
button = ui.button(10,10,100,100, "Hello,\nworld!")
joystick = ui.joystick(-100,-100,200)
textbox = ui.textbox(100,100,300,32)
--joystick2 = ui.joystick(100,100,150)
print("Got button:",button)
|