Skip to content
Permalink
Browse files
Create Monster.h
  • Loading branch information
gillettr committed Mar 11, 2019
1 parent 3d45c95 commit f681f4195b247748084f8c6ee527348f73bea640
Showing 1 changed file with 24 additions and 0 deletions.
@@ -0,0 +1,24 @@
//monster.h
#ifndef Monster_n //header guards
#define Monster_h
#include <iostream>
using namespace std;

#include "character.h"
#include "main.h"

class Monster
{
public:
string name;
short health;
short damage;

Monster(string newNane, int newHealth, int newDamage);

void attack(Character&);

};
#endif


0 comments on commit f681f41

Please sign in to comment.