truelight@9360: /* $Id$ */ truelight@9360: truelight@9360: /** @file NoAI.hpp declarations of the class for a simple C++ AI that will never be an AI */ truelight@9360: truelight@9360: #ifndef NOAI_HPP truelight@9360: #define NOAI_HPP truelight@9360: truelight@9361: #include "../core/ai_controller.hpp" truelight@9360: #include "../core/ai_base.hpp" rubidium@9374: #include "../core/ai_company.hpp" truelight@9360: truelight@9361: class NoAI: public AIController { truelight@9361: private: truelight@9361: AIBase base; rubidium@9374: AICompany company; truelight@9361: truelight@9360: public: truelight@9360: /* virtual */ void GameLoop(); truelight@9360: }; truelight@9360: truelight@9360: #endif /* NOAI_HPP */