diff --git a/gamemode/core/client/cl_config_vars.lua b/gamemode/core/client/cl_config_vars.lua new file mode 100644 index 0000000..5d74b9c --- /dev/null +++ b/gamemode/core/client/cl_config_vars.lua @@ -0,0 +1,9 @@ +-- __ _ _______ _ __ +-- / / /\ | | |__ __| | | \ \ +-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \ +-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > > +-- \ \ / ____ \| | | | | | | | __/ (__| | | | / / +-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/ + +Quantum.Client.Config = {} +Quantum.Client.Config.EnableHUD = true \ No newline at end of file diff --git a/gamemode/core/client/cl_hud.lua b/gamemode/core/client/cl_hud.lua new file mode 100644 index 0000000..6e26e61 --- /dev/null +++ b/gamemode/core/client/cl_hud.lua @@ -0,0 +1,8 @@ +-- __ _ _______ _ __ +-- / / /\ | | |__ __| | | \ \ +-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \ +-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > > +-- \ \ / ____ \| | | | | | | | __/ (__| | | | / / +-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/ + +hook.Add( "HUDShouldDraw", "Quantum_RemoveDefualtHUD", function() return false end) \ No newline at end of file