summaryrefslogtreecommitdiff
path: root/src/script/api/script_tilelist.hpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-29 23:27:26 +0000
committertruebrain <truebrain@openttd.org>2011-11-29 23:27:26 +0000
commit4d91f645c15bb3128adf969afcf7f15bd0f14fa0 (patch)
tree8ccc602deda6aa29bedcd19f697558348e7af3d6 /src/script/api/script_tilelist.hpp
parent2c877b074ed656a6cf1d4d4e415cce407980add5 (diff)
downloadopenttd-4d91f645c15bb3128adf969afcf7f15bd0f14fa0.tar.xz
(svn r23370) -Add: support @api tag in API header files, to select which API should receive the defined classes and functions
Diffstat (limited to 'src/script/api/script_tilelist.hpp')
-rw-r--r--src/script/api/script_tilelist.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/script/api/script_tilelist.hpp b/src/script/api/script_tilelist.hpp
index e9daacc5d..990237c4f 100644
--- a/src/script/api/script_tilelist.hpp
+++ b/src/script/api/script_tilelist.hpp
@@ -17,6 +17,7 @@
/**
* Creates an empty list, in which you can add tiles.
+ * @api ai
* @ingroup ScriptList
*/
class ScriptTileList : public ScriptList {
@@ -57,6 +58,7 @@ public:
/**
* Creates a list of tiles that will accept cargo for the given industry.
* @note If a simular industry is close, it might happen that this industry receives the cargo.
+ * @api ai
* @ingroup ScriptList
*/
class ScriptTileList_IndustryAccepting : public ScriptTileList {
@@ -73,6 +75,7 @@ public:
/**
* Creates a list of tiles which the industry checks to see if a station is
* there to receive cargo produced by this industry.
+ * @api ai
* @ingroup ScriptList
*/
class ScriptTileList_IndustryProducing : public ScriptTileList {
@@ -89,6 +92,7 @@ public:
/**
* Creates a list of tiles which have the requested StationType of the
* StationID.
+ * @api ai
* @ingroup ScriptList
*/
class ScriptTileList_StationType : public ScriptTileList {