using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TrueCraft.Client.Rendering
{
///
/// Enumerates the styles of fonts.
///
public enum FontStyle
{
///
/// Regular font.
///
Regular = 0,
///
/// Bolded font.
///
Bold = 1,
///
/// Striked-through font.
///
Strikethrough = 2,
///
/// Underlined font.
///
Underline = 3,
///
/// Italicized font.
///
Italic = 4,
}
}