ai_testmode.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef AI_TESTMODE_HPP
00013 #define AI_TESTMODE_HPP
00014
00015 #include "ai_object.hpp"
00016
00026 class AITestMode : public AIObject {
00027 public:
00028 static const char *GetClassName() { return "AITestMode"; }
00029
00030 private:
00031 AIModeProc *last_mode;
00032 AIObject *last_instance;
00033
00034 protected:
00038 static bool ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs);
00039
00040 public:
00046 AITestMode();
00047
00052 ~AITestMode();
00053 };
00054
00055 #endif