struct vertex_3i
{
int x;
int y;
int z;
};
struct vertex_3s
{
short x;
short y;
short z;
};
struct vertex_2c
{
char u;
char v;
};
struct BSP_vertex_t
{
vertex_3i coord;
vertex_2c texture_coord;
vertex_3s normal;
};
et j'ai un beau parse error a la premiere utilisation d'une struct dans une autre struct, cad ici:
struct BSP_vertex_t
{
[b][4]>>>[/4][/b] vertex_3i coord;
vertex_2c texture_coord;
vertex_3s normal;
};
c super hein? du coup je peux rien faire... merci tigcc



