fabyyyy a écrit :
j'ai cette erreur sous visual studio : e:\projet\MyDirectx\MyVertexList.cpp(123) : fatal error C1010: unexpected end of file while looking for precompiled header directive
en gros c'est le fichier h qui ne va pas apparemment, mais le voici, je ne vois rien de faux :
Code :
- #ifndef LABY_H
- #define LABY_H
- class Laby
- {
- public:
- Laby();
- int getPorteX(int i,int j);
- int getPorteZ(int i,int j);
- bool canGo(int x1,int y1,int x2,int y2);
- private:
- int porteX[10][9];
- int porteZ[9][10];
- };
- #endif
|
une aide quelqu'un ?
|