diff -Nauwr Irrlicht/include/S3DVertex.h Irrlicht/include/S3DVertex.h --- Irrlicht/include/S3DVertex.h 2005-08-20 22:17:44.000000000 +0200 +++ Irrlicht/include/S3DVertex.h 2005-08-29 09:43:04.000000000 +0200 @@ -84,6 +84,10 @@ S3DVertex2TCoords(f32 x, f32 y, f32 z, SColor c, f32 tu, f32 tv, f32 tu2, f32 tv2) : Pos(x,y,z), Color(c), TCoords(tu,tv), TCoords2(tu2,tv2) {} + //! constructor + S3DVertex2TCoords( core::vector3df pos, SColor c, core::vector2df t1, core::vector2df t2 ) + : Pos(pos), Color(c), TCoords(t1), TCoords2(t2) {} + //! Position core::vector3df Pos;