mirror of
				https://github.com/edubart/otclient.git
				synced 2025-11-04 04:36:23 +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
 |