-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlueMen.hpp
32 lines (27 loc) · 813 Bytes
/
BlueMen.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**********************************************************
** Program name: BlueMen.hpp
** Author: Ben Fridkis
** Date: 5/5/2017
** Description: BlueMen class declaration. BlueMen is
a derived class of the Creature class. Its
members hold and manipulate data for a
fantasy style battle game. BlueMen is one
of 5 characters (represented via subclasses)
that make up the types of players for the
game.
***********************************************************/
#ifndef BlueMen_hpp
#define BlueMen_hpp
#include "Creature.hpp"
#include<cstdlib>
#include<ctime>
class BlueMen : public Creature
{
public:
BlueMen(string sName);
BlueMen(string sName, int strPoints);
virtual int attack() override;
virtual int defense() override;
virtual ~BlueMen(){};
};
#endif /* BlueMen_hpp */