Initial commit

This commit is contained in:
2026-03-15 14:54:49 +03:00
commit 64f8029c06
4027 changed files with 254888 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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" )