1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef _CLIENT_H_ #define _CLIENT_H_ #include <GL/glew.h> /* client extends functionality of the host platform */ struct client { /* display lists identifiers */ GLuint ground_list; GLuint triangle_list; GLuint figures_list; /* pyramid texture handle */ GLuint textures[2]; GLfloat xrot; GLfloat yrot; }; #endif