src/ai/NoAI/NoAI.hpp
branchnoai
changeset 9360 c20d0a9e0a5c
child 9361 7bb2bd22b16e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ai/NoAI/NoAI.hpp	Tue Mar 13 15:47:26 2007 +0000
@@ -0,0 +1,16 @@
+/* $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 */