18.11.2016, 12:55
Welcome to the world of C++!
You're forward-declaring CVehicleSpawn after actually defining it, e.g.
You've probably messed up your include order somewhere.
You're forward-declaring CVehicleSpawn after actually defining it, e.g.
Код:
struct CVehicleSpawn
{
int some_var;
//...
};
struct CVehicleSpawn; // this is wrong

