Files
mmkrp_2026/lua/vgui/dexpandbutton.lua
2026-03-15 14:54:49 +03:00

19 lines
357 B
Lua

local PANEL = {}
AccessorFunc( PANEL, "m_bExpanded", "Expanded", FORCE_BOOL )
Derma_Hook( PANEL, "Paint", "Paint", "ExpandButton" )
function PANEL:Init()
self:SetSize( 15, 15 )
self:SetText( "" )
end
-- No example for this control
function PANEL:GenerateExample( class, tabs, w, h )
end
derma.DefineControl( "DExpandButton", "", PANEL, "DButton" )