Original Post
could someone help me on my code my first header is my second header is the functions are in there own source file the problem is when i try to run it it says class enemy not declared in the first and class human in the second and if i declare them by #include "human.h" and #include "orc.h" the compilation doesn't end any help?
class human{
int two
int three
int four
void attack(int &amount, enemy &name);
void magic(int &type, enemy &name);
};
class enemy{
int two
int three
int four
void attack(int &amount, human &name);
void magic(int &type, human &name);
};