The /home was not necessary
[progcomp2012.git] / home / progcomp / judge / manager / human_controller.h
diff --git a/home/progcomp/judge/manager/human_controller.h b/home/progcomp/judge/manager/human_controller.h
deleted file mode 100644 (file)
index b2069fc..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef HUMAN_CONTROLLER_H
-#define HUMAN_CONTROLLER_H
-
-#include "controller.h"
-
-/**
- * Class to control a human player playing Stratego
- */
-class Human_Controller : public Controller
-{
-       public:
-               Human_Controller(const Piece::Colour & newColour, const bool enableGraphics) : Controller(newColour, "human"), graphicsEnabled(enableGraphics) {}
-               virtual ~Human_Controller() {}
-
-               virtual bool HumanController() const {return true;}
-               virtual MovementResult QuerySetup(const char * opponentName, std::string setup[]);
-               virtual MovementResult QueryMove(std::string & buffer); 
-               virtual void Message(const char * message) {fprintf(stderr, "%s\n", message);}
-       
-       private:
-               const bool graphicsEnabled;
-
-
-};
-
-#endif //AI_CONTROLLER_H

UCC git Repository :: git.ucc.asn.au