(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.cpp a simple C++ AI that will never be an AI */#include "../../stdafx.h"#include "NoAI.hpp"/* virtual */ void NoAI::GameLoop(){}