S
ScOe
I have class TZone which needs to contain array of TMonster class
#include "Monsters.h"
....
std::vector <TMonster> Monsters;
this declaration throw compiler error Undefined symbol TMonster.
next declaration in this header is container TItems. This one compile ok.
What could be the problem. I thought of cross linkage problem, but i
couldn't find " the source of problems"
Any suggestions ?
#include "Monsters.h"
....
std::vector <TMonster> Monsters;
this declaration throw compiler error Undefined symbol TMonster.
next declaration in this header is container TItems. This one compile ok.
What could be the problem. I thought of cross linkage problem, but i
couldn't find " the source of problems"
Any suggestions ?