(svn r9142) [NoAI] -Add: added initial code for AI-layer system
-Cleanup: ai.h only declares functions, no longer structs and other stuff
-Add: added example AI called NoAI
-Add: added first AIBase:: functions (random-related)
Many thanks to Rubidium and Celestar for their comments and suggestions!
/* $Id$ *//** @file NoAI.hpp declarations of the class for a simple C++ AI that will never be an AI */#ifndef NOAI_HPP#define NOAI_HPP#include "../core/ai_base.hpp"class NoAI: public AIBase{public: /* virtual */ void GameLoop();};#endif /* NOAI_HPP */