Hey i got errors when i pass into class function as argument an another class object. Like : 11 IntelliSense: declaration is incompatible with "int Enemy::Get_Monster_Health(<error-type> character)" (declared at line 30)
and when i declare class Character; . I get bunch of errors like 102 errors.
Are the member values for Character private? When you pass in a Character instance to the function how are you getting the info you need? Could it be a design issue?
If there is a missing semicolon or other problem in your Character class could cause you real problems using it. Looks like your problem is when you try to take a Character as an input variable you are having issues?