// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
using System;
namespace Microsoft.Xna.Framework.Content.Pipeline.Graphics
{
///
/// Flags that describe style information to be applied to text.
/// You can combine these flags by using a bitwise OR operator (|).
///
[Flags]
public enum FontDescriptionStyle
{
///
/// Bold text.
///
Bold,
///
/// Italic text.
///
Italic,
///
/// Normal text.
///
Regular,
}
}