src/ai/NoAI/NoAI.cpp
author truelight
Tue, 13 Mar 2007 15:47:26 +0000
branchnoai
changeset 9360 c20d0a9e0a5c
child 9361 7bb2bd22b16e
permissions -rw-r--r--
(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()
{
}