From d09d3566ddd86a559819354bad805dfc23622db8 Mon Sep 17 00:00:00 2001 From: yexo Date: Wed, 17 Jun 2009 13:12:08 +0000 Subject: (svn r16585) -Add [NoAI]: AIBuoyList to get a list of all buoys --- src/ai/api/ai_buoylist.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/ai/api/ai_buoylist.hpp (limited to 'src/ai/api/ai_buoylist.hpp') diff --git a/src/ai/api/ai_buoylist.hpp b/src/ai/api/ai_buoylist.hpp new file mode 100644 index 000000000..b18a3e34f --- /dev/null +++ b/src/ai/api/ai_buoylist.hpp @@ -0,0 +1,21 @@ +/* $Id$ */ + +/** @file ai_buoylist.hpp List all the buoys. */ + +#ifndef AI_BUOYLIST_HPP +#define AI_BUOYLIST_HPP + +#include "ai_abstractlist.hpp" + +/** + * Creates a list of buoys. + * @ingroup AIList + */ +class AIBuoyList : public AIAbstractList { +public: + static const char *GetClassName() { return "AIBuoyList"; } + AIBuoyList(); +}; + + +#endif /* AI_BUOYLIST_HPP */ -- cgit v1.2.3-54-g00ecf