00001 #ifndef INCLUDE_VERTEX 00002 #define INCLUDE_VERTEX 00003 00004 class Vertex { 00005 public: 00006 float x,y,z,tex_x,tex_y; 00007 00008 Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y); 00009 }; 00010 00011 #endif