src/ai/NoAI/NoAI.hpp
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.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 */