Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
FontStyle.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using System;
4 using SiliconStudio.Core;
5 
6 namespace SiliconStudio.Paradox.Graphics.Font
7 {
8  /// <summary>
9  /// Type of a font.
10  /// </summary>
11  [Flags]
12  [DataContract]
13  public enum FontStyle
14  {
15  /// <summary>
16  /// A regular font.
17  /// </summary>
18  Regular = 0,
19 
20  /// <summary>
21  /// A bold font.
22  /// </summary>
23  Bold = 1,
24 
25  /// <summary>
26  /// An italic font.
27  /// </summary>
28  Italic = 2,
29  }
30 }
SharpDX.DirectWrite.Font Font
Flags
Enumeration of the new Assimp's flags.