line.h
Code: Select all
class CLine
{
public:
int pos;
bool vert;
int speed;
unsigned short color;
CLine(void);
~CLine(void);
void draw();
void clear();
};
Code: Select all
Line.h(1): error: expected '=', ',', ';', 'asm' or '__attribute__' before 'CLine'
Thanks in advance.