All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
FontCharacter.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 namespace Eegeo
6 {
7  namespace Fonts
8  {
9  struct FontCharacter
10  {
11  float x;
12  float y;
13  float width;
14  float height;
15  float offsetX;
16  float offsetY;
17  float advanceX;
18  int texturePage;
19 
20  FontCharacter();
21  };
22  }
23 }