It gives me this Error that talks about ... just so you know where to find the function... Player.cpp line 18 or Player.h line 36. I know my code is a mess right now. I'll clean it up when I learn new stuff. Thanks in advance!!!
Severity Code Description Project File Line Suppression State
Error LNK2001 unresolved external symbol "void __cdecl ShowBattleStats(class Player *,class Enemy *)" (?ShowBattleStats@@YAXPAVPlayer@@PAVEnemy@@@Z) Simple Text RPG C:\Users\David\Documents\Visual Studio 2015\Projects\Simple Text RPG\Simple Text RPG\Main.obj 1
On line 19 you have declared the prototype void ShowBattleStats(Player*, Enemy*);
but you have not written the actual function.
If you add this somewhere in your Main.cpp it compiles.