mirror of
				https://github.com/ErikasKontenis/SabrehavenServer.git
				synced 2025-10-31 03:56:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			298 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			298 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- @docclass
 | |
| UICheckBox = extends(UIWidget, "UICheckBox")
 | |
| 
 | |
| function UICheckBox.create()
 | |
|   local checkbox = UICheckBox.internalCreate()
 | |
|   checkbox:setFocusable(false)
 | |
|   checkbox:setTextAlign(AlignLeft)
 | |
|   return checkbox
 | |
| end
 | |
| 
 | |
| function UICheckBox:onClick()
 | |
|   self:setChecked(not self:isChecked())
 | |
| end
 | 
