Skip to content
Permalink
Browse files
Create combat.h
  • Loading branch information
gillettr committed Mar 11, 2019
1 parent d31e21d commit ec49446e8947997dc82b8f6f1fc1ea9246e15662
Showing 1 changed file with 23 additions and 0 deletions.
@@ -0,0 +1,23 @@
//Combat.h

#ifndef Combat_h
#define Combat_h

#include <iostream>
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

0 comments on commit ec49446

Please sign in to comment.