-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnt.h
More file actions
33 lines (24 loc) · 844 Bytes
/
Ant.h
File metadata and controls
33 lines (24 loc) · 844 Bytes
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
/****************************************************************************************************
* * Program name: CS162 Group Project
* * Group number: # 29
* * Group member: Taekyoung Kim, Zuhair Ahmed
* * Date: 02/10/2019
* * Description: This is Ant.h file for CS162 GroupProject
* * This project demonstrates a 2D simulation of Predator-Prey Game.
* * The board is a 2D array and each cell points to a Critter.
******************************************************************************************************/
#ifndef ANT_H
#define ANT_H
#include "Critter.h"
class Ant : public Critter
{
private:
public:
Ant();
~Ant() override;
void move(Critter***) override;
void breed(Critter***) override;
bool starve() override // Return false because it never starves.
{ return false; }
};
#endif //ANT_H