#ifndef _CLIENT_H_ #define _CLIENT_H_ #include /* 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