- Fixed gui bug where unchecking extremely low undid low
[crack-attack.git] / src / ComputerPlayer.h
blob1aa85215403a5b107348f21673bc07ec4be637b4
1 #ifndef COMP_PLAY_H
2 #define COMP_PLAY_H
4 #include "ComputerPlayerAI.h"
6 //class ComputerPlayerAI;
8 using namespace std;
10 /* static */ class ComputerPlayer {
11 private:
12 static bool lost;
13 static ComputerPlayerAI *ai;
15 public:
16 static void gameStart ( );
17 static void timeStep ( );
18 static int gameFinish ( );
20 static void addGarbage ( int height, int width, int flavor );
22 // lights
23 static bool checkLevelLightDying ( );
24 static bool checkLevelLightBlue ( int block );
27 #endif