ai_execmode.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef AI_EXECMODE_HPP
00013 #define AI_EXECMODE_HPP
00014
00015 #include "ai_object.hpp"
00016
00024 class AIExecMode : public AIObject {
00025 public:
00027 static const char *GetClassName() { return "AIExecMode"; }
00028
00029 private:
00030 AIModeProc *last_mode;
00031 AIObject *last_instance;
00032
00033 protected:
00037 static bool ModeProc();
00038
00039 public:
00045 AIExecMode();
00046
00051 ~AIExecMode();
00052 };
00053
00054 #endif