All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
BMFontReaderResult.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "BMFontInfo.h"
7 #include "BMFontCommon.h"
8 #include "Fonts.h"
9 
10 #include <vector>
11 #include <string>
12 
13 namespace Eegeo
14 {
15  namespace Fonts
16  {
17  namespace BMFont
18  {
20  {
21  BMFontInfo fontInfo;
22  BMFontCommon fontCommon;
23  std::vector<std::string> texturePageFilenames;
24  FontKerningTable* kerningTable;
25  FontCharacterTable* characterTable;
26 
28  : kerningTable(NULL)
29  , characterTable(NULL)
30  {
31 
32  }
33  };
34  }
35  }
36 }