lua/lua/gmod_integration/client/cl_font.lua
2023-12-16 13:42:40 +01:00

23 lines
445 B
Lua

surface.CreateFont("GmodIntegration_Roboto_16", {
font = "Roboto",
size = 16,
weight = 500,
antialias = true,
shadow = false
})
surface.CreateFont("GmodIntegration_Roboto_18", {
font = "Roboto",
size = 18,
weight = 500,
antialias = true,
shadow = false
})
surface.CreateFont("GmodIntegration_Roboto_20", {
font = "Roboto",
size = 20,
weight = 500,
antialias = true,
shadow = false
})