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