using System; namespace Decal.Adapter.Wrappers; /// /// FontWeight for use in HUD Rendering /// [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 }