Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00082 #ifndef SCRIPT_TYPES_HPP
00083 #define SCRIPT_TYPES_HPP
00084
00085 #include "../../core/overflowsafe_type.hpp"
00086 #include "../../company_type.h"
00087 #include <squirrel.h>
00088
00089
00090 typedef uint BridgeType;
00091 typedef byte CargoID;
00092 class CommandCost;
00093 typedef uint16 EngineID;
00094 typedef uint16 GoalID;
00095 typedef uint16 GroupID;
00096 typedef uint16 IndustryID;
00097 typedef uint8 IndustryType;
00098 typedef OverflowSafeInt64 Money;
00099 typedef uint16 SignID;
00100 typedef uint16 StationID;
00101 typedef uint16 StringID;
00102 typedef uint16 SubsidyID;
00103 typedef uint32 TileIndex;
00104 typedef uint16 TownID;
00105 typedef uint32 VehicleID;
00106
00107
00108 typedef uint ScriptErrorType;
00109 typedef BridgeType BridgeID;
00110
00111 #endif