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) } }