GlPortal Class Reference  0.1.1
Source code documentation of the free and open 3D action puzzle game.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Glyph.hpp
Go to the documentation of this file.
1 #ifndef RADIX_GLYPH_HPP
2 #define RADIX_GLYPH_HPP
3 
5 
6 namespace radix {
7 
8 class Glyph {
9 public:
10  int x;
11  int y;
12  int width;
13  int height;
14  float xOffset;
15  float yOffset;
16  float advance;
17 
19 };
20 
21 } /* namespace radix */
22 
23 #endif /* RADIX_GLYPH_HPP */
Definition: GameController.hpp:7
float advance
Definition: Glyph.hpp:16
float yOffset
Definition: Glyph.hpp:15
Definition: Glyph.hpp:8
float xOffset
Definition: Glyph.hpp:14
int width
Definition: Glyph.hpp:12
int x
Definition: Glyph.hpp:10
Mesh mesh
Definition: Glyph.hpp:18
int y
Definition: Glyph.hpp:11
Definition: Mesh.hpp:10
int height
Definition: Glyph.hpp:13