first commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
xyghtBladWinRPMenu = xyghtBladWinRPMenu or {}
|
||||
|
||||
AddCSLuaFile("bladw_deathscreen/config/sh_config.lua")
|
||||
|
||||
if SERVER then
|
||||
AddCSLuaFile("bladw_hud/client/cl_hud.lua")
|
||||
AddCSLuaFile("bladw_cMenu/client/cl_cMenu.lua")
|
||||
AddCSLuaFile("bladw_deathscreen/client/cl_interface_ds.lua")
|
||||
|
||||
include("bladw_deathscreen/server/sv_hooks.lua")
|
||||
|
||||
resource.AddSingleFile("resource/fonts/Poppins-SemiBold.ttf")
|
||||
resource.AddSingleFile("resource/fonts/Poppins-Medium.ttf")
|
||||
resource.AddSingleFile("resource/fonts/Poppins-Bold.ttf")
|
||||
resource.AddSingleFile("resource/fonts/Poppins-Regular.ttf")
|
||||
else
|
||||
include("bladw_hud/client/cl_hud.lua")
|
||||
include("bladw_cMenu/client/cl_cMenu.lua")
|
||||
include("bladw_deathscreen/client/cl_interface_ds.lua")
|
||||
|
||||
surface.CreateFont("bladw_text", {
|
||||
font = "Poppins-SemiBold",
|
||||
size = 25,
|
||||
weight = 600,
|
||||
antialias = true
|
||||
})
|
||||
|
||||
surface.CreateFont("bladw_text_Medium", {
|
||||
font = "Poppins-SemiBold",
|
||||
size = 20,
|
||||
weight = 800,
|
||||
antialias = true
|
||||
})
|
||||
|
||||
surface.CreateFont("bladw_text_Bold", {
|
||||
font = "Poppins-Bold",
|
||||
size = 70,
|
||||
weight = 700,
|
||||
antialias = true
|
||||
})
|
||||
|
||||
surface.CreateFont("bladw_text_Regular", {
|
||||
font = "Poppins-Regular",
|
||||
size = 35,
|
||||
weight = 400,
|
||||
antialias = true
|
||||
})
|
||||
|
||||
surface.CreateFont("bladw_text2", {
|
||||
font = "Poppins-SemiBold",
|
||||
size = 21.5,
|
||||
weight = 800,
|
||||
antialias = true
|
||||
})
|
||||
end
|
||||
Reference in New Issue
Block a user