-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnt_Fire.cpp
42 lines (38 loc) · 1.16 KB
/
Ant_Fire.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
39
40
41
/*********************************************************************
** Program Filename: Ant_Fire.cpp
** Author: Aeijan Bajracharya
** Date: 5/30/18
** Description: Fire class
** Input: N/A
** Output: N/A
*********************************************************************/
#include <iostream>
#include "Ant_P.h"
#include "Ant_Fire.h"
using namespace std;
/*********************************************************************
** Function: Fire()
** Description: Constructor
** Parameters: N/A
** Pre-Conditions: Constructs the Fire
** Post-Conditions:
*********************************************************************/
Fire::Fire(){
food_cost = 4;
armor = 1;
name = "FR";
}
/*********************************************************************
** Function: attack_enemy()
** Description: Attacks Bees
** Parameters: N/A
** Pre-Conditions: N/A
** Post-Conditions: N/A
*********************************************************************/
void Fire::attack_enemy(/*game * board,*Bee**bees, int * num_bees */){
// if(board[i].bees != NULL){
// for(int i = 0; i < num_bees; i++){
// board[i].bees = NULL;
// }
// }
}