lua/lua/gmod_integration/client/cl_font.lua
2024-02-10 00:59:17 +01:00

23 lines
445 B
Lua

surface.CreateFont("GmodIntegration_Roboto_16", {
font = "Roboto",
size = 16,
weight = 100,
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
})