/* | |
Name:Wong Pui Shan | |
Sdutent ID:52611804 | |
program: AScISD | |
Name: HAR Chiu Kwong Samson | |
Sdutent ID:52629360 | |
program: AScISD | |
Name: LAM Cheuk Man | |
Sdutent ID:52621140 | |
program: AScISD | |
Name:KO Jeffrey KO | |
Sdutent ID:525 695 30 | |
program: AScISD | |
*/ | |
//#include "FileIO.h" | |
class Pacman | |
{ | |
private: | |
char c; | |
int x; | |
int y; | |
int Ox; | |
int Oy; | |
//FileIO fileIO; | |
public: | |
Pacman(); | |
int getPacmanX(); | |
int getPacmanY(); | |
void Move(Game &g, Maze &m,Utilities u, int &dot, Ghost &ga, Ghost &gb, Ghost &gc, Ghost &gd, Utilities &ud,Utilities &uc,Utilities &ub,Utilities &ua,Utilities &z, Fruit &fruit1, Utilities &f); | |
void Die(Utilities &u); | |
void OppositePosition(Game &g, Maze &m,Utilities u, int &dot); | |
void EatingGhost(Ghost &ghost, Game &g, Utilities &a, Utilities &u); | |
}; | |