blob: 6d71442bf9f7d130ab7ba3c0040adda6ab50213f (
plain)
1
2
3
4
5
6
7
8
9
10
|
do return end
ART.RegisterInventorySheet(function()
local skillsheet = vgui.Create( "DPanel" )
skillsheet.Paint = function( self, w, h ) end
return "Skills", skillsheet, "icon16/tick.png"
end)
|