comparison TaskManager/Test/test_render/vertex.h @ 109:028ffc9c0375 draft

Cerium cvs version
author gongo@gendarme.local
date Wed, 12 Nov 2008 17:39:33 +0900
parents
children dc7d10ae7460
comparison
equal deleted inserted replaced
108:6f3b3dd3c095 109:028ffc9c0375
1 #ifndef INCLUDE_VERTEX
2 #define INCLUDE_VERTEX
3
4 class Vertex {
5 public:
6 float x,y,z,tex_x,tex_y;
7
8 Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y);
9 };
10
11 #endif