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
Texture.hpp
Go to the documentation of this file.
1 #ifndef RADIX_TEXTURE_HPP
2 #define RADIX_TEXTURE_HPP
3 
4 namespace radix {
5 
6 struct Texture {
7  unsigned int handle = 0;
8  int width;
9  int height;
10 };
11 
12 } /* namespace radix */
13 
14 #endif /* RADIX_TEXTURE_HPP */
Definition: GameController.hpp:7
Definition: Texture.hpp:6
int height
Definition: Texture.hpp:9
int width
Definition: Texture.hpp:8
unsigned int handle
Definition: Texture.hpp:7