summaryrefslogtreecommitdiff
path: root/src/script/api/script_types.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2012-03-04 16:54:12 +0000
committerrubidium <rubidium@openttd.org>2012-03-04 16:54:12 +0000
commit22637f139fa73dc526982fdbe3ba79d8bfef438a (patch)
tree0c3a16d254e5992cade4d325bb3876ff4a37b3a3 /src/script/api/script_types.hpp
parente6a828def1b25671b4115903cb81d97c4e2348d6 (diff)
downloadopenttd-22637f139fa73dc526982fdbe3ba79d8bfef438a.tar.xz
(svn r24008) -Cleanup/doc: try not to mention (No)AI in script APIs
Diffstat (limited to 'src/script/api/script_types.hpp')
-rw-r--r--src/script/api/script_types.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/api/script_types.hpp b/src/script/api/script_types.hpp
index 2b763f4f5..d4b72ea80 100644
--- a/src/script/api/script_types.hpp
+++ b/src/script/api/script_types.hpp
@@ -95,7 +95,7 @@ typedef uint16 GoalID; ///< The ID of a goal.
typedef uint16 GroupID; ///< The ID of a group.
typedef uint16 IndustryID; ///< The ID of an industry.
typedef uint8 IndustryType; ///< The ID of an industry-type.
-typedef OverflowSafeInt64 Money; ///< Money, stored in a 32bit/64bit safe way. For AIs money is always in pounds.
+typedef OverflowSafeInt64 Money; ///< Money, stored in a 32bit/64bit safe way. For scripts money is always in pounds.
typedef uint16 SignID; ///< The ID of a sign.
typedef uint16 StationID; ///< The ID of a station.
typedef uint16 StringID; ///< The ID of a string.
@@ -105,7 +105,7 @@ typedef uint16 TownID; ///< The ID of a town.
typedef uint32 VehicleID; ///< The ID of a vehicle.
/* Types we defined ourself, as the OpenTTD core doesn't have them (yet) */
-typedef uint ScriptErrorType; ///< The types of errors inside the NoAI framework.
+typedef uint ScriptErrorType;///< The types of errors inside the script framework.
typedef BridgeType BridgeID; ///< The ID of a bridge.
#endif /* SCRIPT_TYPES_HPP */