Added Redmew Debugger and Debugged Checkboxs

This commit is contained in:
Cooldude2606
2019-05-10 22:47:10 +01:00
parent 5c43c5f854
commit 0559bade9c
21 changed files with 1067 additions and 72 deletions

View File

@@ -23,12 +23,13 @@ function Button.new_button(name)
local uid = Gui.uid_name()
local self = setmetatable({
name=uid,
clean_name=name
clean_name=name,
_draw={
name=uid,
style=mod_gui.button_style,
type='button'
}
},{__index=Button._prototype})
self._draw.name = uid
self._draw.style = mod_gui.button_style
self._draw.type = 'button'
Button.config[uid] = self
if name then