This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 0e770b2b49
commit 94063e4369
7342 changed files with 1718932 additions and 14 deletions

View File

@@ -0,0 +1,49 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
menubar = {}
function menubar.Init()
menubar.Control = vgui.Create( "DMenuBar" )
menubar.Control:Dock( TOP )
menubar.Control:SetVisible( false )
hook.Run( "PopulateMenuBar", menubar.Control )
end
function menubar.ParentTo( pnl )
// I don't like this
if ( !IsValid( menubar.Control ) ) then
menubar.Init()
end
menubar.Control:SetParent( pnl )
menubar.Control:MoveToBack()
menubar.Control:SetHeight( 30 )
menubar.Control:SetVisible( true )
end
function menubar.IsParent( pnl )
return menubar.Control:GetParent() == pnl
end
hook.Add( "OnGamemodeLoaded", "CreateMenuBar", function()
menubar.Init()
end )