src/ai/api/ai_vehiclelist.hpp
branchnoai
changeset 9614 814c3bbf8ecc
child 9632 1816329e9cdd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ai/api/ai_vehiclelist.hpp	Fri May 04 19:55:35 2007 +0000
@@ -0,0 +1,26 @@
+/* $Id$ */
+
+/** @file ai_vehiclelist.hpp list all the vehicles (you own) */
+
+#ifndef AI_VEHICLELIST_HPP
+#define AI_VEHICLELIST_HPP
+
+#include "ai_abstractlist.hpp"
+
+/**
+ * Class that creates a list of vehicles you own.
+ */
+class AIVehicleList : public AIAbstractList {
+public:
+	/**
+	 * The name of the class, needed by several sub-processes.
+	 */
+	static const char *GetClassName() { return "AIVehicleList"; }
+
+	/**
+	 * The constructor to make a list of towns.
+	 */
+	AIVehicleList();
+};
+
+#endif /* AI_VEHICLELIST_HPP */