mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
296 B
C#
17 lines
296 B
C#
using System;
|
|
|
|
namespace Orvid.Graphics.FontSupport
|
|
{
|
|
/// <summary>
|
|
/// There can be up to 8 different flags.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum FontStyle
|
|
{
|
|
Normal = 0,
|
|
Bold = 1,
|
|
Italic = 2,
|
|
Underline = 4,
|
|
Strikeout = 8,
|
|
}
|
|
}
|