mirror of
				https://github.com/ErikasKontenis/SabrehavenServer.git
				synced 2025-10-31 03:56:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			224 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			224 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- @docclass
 | |
| UILabel = extends(UIWidget, "UILabel")
 | |
| 
 | |
| function UILabel.create()
 | |
|   local label = UILabel.internalCreate()
 | |
|   label:setPhantom(true)
 | |
|   label:setFocusable(false)
 | |
|   label:setTextAlign(AlignLeft)
 | |
|   return label
 | |
| end
 | 
