From ec49446e8947997dc82b8f6f1fc1ea9246e15662 Mon Sep 17 00:00:00 2001 From: "Ryan Gillett (gillettr)" Date: Mon, 11 Mar 2019 07:49:35 +0000 Subject: [PATCH] Create combat.h --- combat.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 combat.h 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