CabinGame/Luxe/blocks/ui/simple_text.wren
2020-09-06 17:04:41 +02:00

18 lines
No EOL
309 B
Text

import "luxe: ui/control" for Control
class UISimpleText{
static create(ent){
var text = Control.create(ent)
Control.set_render(text) {|control, state, x,y,w,h|
//System.print(control)
}
return text
}
static set_text(con, text){
System.print(text)
}
}