26 lines
404 B
C#
26 lines
404 B
C#
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
|
|
}
|