diff --git a/combat.h b/combat.h new file mode 100644 index 0000000..0971897 --- /dev/null +++ b/combat.h @@ -0,0 +1,23 @@ +//Combat.h + +#ifndef Combat_h +#define Combat_h + +#include +using namespace std; + +#include "Character.h" +#include "Monster.h" + +class Combat +{ +public: + Monster& M; + Combat(Character& C); + + void combatChoice(Character& C); + + void combat1(Character& C); + +}; +#endif