-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBarbarian.h
34 lines (25 loc) · 841 Bytes
/
Barbarian.h
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
33
34
/****************************************************************************************************
* * Program name: CS162 Project3
* * Author: Taekyoung Kim
* * Date: 02/05/2019
* * Description: This is Barbarian.h file for CS162 Project3
* * This project demonstrates a fantasy combat game.
* * There are 5 characters that have different ability and power.
* * The real game is done with a dice.
******************************************************************************************************/
#ifndef PROJECT3_BARBARIAN_H
#define PROJECT3_BARBARIAN_H
#include "Character.h"
#include <string>
#include <iostream>
class Barbarian:
public Character
{
private:
public:
Barbarian();
~Barbarian() override;
int Attack() override;
void Defense(int at) override;
};
#endif //PROJECT3_BARBARIAN_H