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,20 @@
local PANEL = {}
function PANEL:Init()
end
function PANEL:OnMousePressed()
self:GetParent():Grip( 1 )
end
function PANEL:Paint( w, h )
derma.SkinHook( "Paint", "ScrollBarGrip", self, w, h )
return true
end
derma.DefineControl( "DScrollBarGrip", "A Scrollbar Grip", PANEL, "DPanel" )