I have 1 compiler error. It is from this line in my code:
cout << myClass->Get_Type().discription;
Where as Get_Type() is:
void Tile::Get_Type() {
return &myStruct;
}
I'm not quite sure what I am doing wrong. Or what for that matter could be going wrong.