This commit is contained in:
erik 2025-06-09 02:03:11 +02:00
parent 01151e679b
commit 57b2f0400e
265 changed files with 22828 additions and 6 deletions

View file

@ -0,0 +1,26 @@
using System;
namespace Decal.Adapter.Wrappers;
/// <summary>
/// FontWeight for use in HUD Rendering
/// </summary>
[CLSCompliant(true)]
public enum FontWeight
{
Black = 900,
Bold = 700,
DemiBold = 600,
DoNotCare = 0,
ExtraBold = 800,
ExtraLight = 200,
Heavy = 900,
Light = 300,
Medium = 500,
Normal = 400,
Regular = 400,
SemiBold = 600,
Thin = 100,
UltraBold = 800,
UltraLight = 200
}