-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBee_P.cpp
40 lines (34 loc) · 1007 Bytes
/
Bee_P.cpp
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
35
36
37
38
/*********************************************************************
** Program Filename: Bee_P.cpp
** Author: Aeijan Bajracharya
** Date: 5/30/18
** Description: Bee class
** Input: N/A
** Output: N/A
*********************************************************************/
#include <iostream>
#include "Insect_GP.h"
#include "Bee_P.h"
using namespace std;
/*********************************************************************
** Function: Bee()
** Description: Constructor
** Parameters: N/A
** Pre-Conditions: Constructs the Bee
** Post-Conditions:
*********************************************************************/
Bee::Bee(){
armor = 4;
damage = 1;
name = "BEE";
}
/*********************************************************************
** Function: attack_enemy()
** Description: N/A
** Parameters: N/A
** Pre-Conditions: N/A
** Post-Conditions: N/A
*********************************************************************/
void Bee::attack_enemy(){
// Player function
}