Advertisement
bs149808

makebutton

Jul 21st, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function MakeButtonX(_function, _label, _pos, _width, _height, _font)
  2. local params = {}
  3. params.function_owner = self
  4. params.click_function = _function
  5. params.label = _label
  6. params.position = _pos
  7. params.width = _width
  8. params.height = _height
  9. params.font_size = _font
  10. self.createButton(params)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement