diff TaskManager/Test/simple_render/vertex.h @ 85:9b96b190cb73

*** empty log message ***
author gongo
date Wed, 27 Feb 2008 04:25:04 +0900
parents 811ffebd8deb
children
line wrap: on
line diff
--- a/TaskManager/Test/simple_render/vertex.h	Tue Feb 26 21:49:50 2008 +0900
+++ b/TaskManager/Test/simple_render/vertex.h	Wed Feb 27 04:25:04 2008 +0900
@@ -2,12 +2,10 @@
 #define INCLUDE_VERTEX
 
 class Vertex {
-public:	
-    float x,y,z,tex_x,tex_y;
-    
-    Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y);
+	public:	
+		float x,y,z,tex_x,tex_y;
 
-    void set(float, float, float, float, float);
+		Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y);
 };
 
 #endif