All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
BMFontCommon.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 namespace Eegeo
6 {
7  namespace Fonts
8  {
9  namespace BMFont
10  {
11  struct BMFontCommon
12  {
13  float lineHeight;
14  float base;
15  int scaleW;
16  int scaleH;
17  int pages;
18 
19  BMFontCommon()
20  : lineHeight(0.f)
21  , base(0)
22  , scaleW(0)
23  , scaleH(0)
24  , pages(0)
25  {
26 
27  }
28  };
29  }
30  }
31 }