You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
V
This is my function:
void load(int *money, int *exp)
{
int mon, xp;
ifstream savefile("save.txt");
if (savefile.good())
{
savefile >> player.maxhp;
savefile >> player.maxmp;
savefile >> player.atk;
savefile >> player.def;
savefile >>...