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
Mesh.hpp
Go to the documentation of this file.
1 #ifndef RADIX_MESH_HPP
2 #define RADIX_MESH_HPP
3 
4 #include <vector>
5 
7 
8 namespace radix {
9 
10 class Mesh {
11 public:
12  int handle;
13  int numFaces;
14  std::vector<Vector3f> vertices;
15 };
16 
17 } /* namespace radix */
18 
19 #endif /* RADIX_MESH_HPP */
Definition: GameController.hpp:7
int handle
Definition: Mesh.hpp:12
std::vector< Vector3f > vertices
Definition: Mesh.hpp:14
int numFaces
Definition: Mesh.hpp:13
Definition: Mesh.hpp:10