mirror of https://github.com/OpenTTD/OpenTTD
(svn r20288) -Doc: add doxygen string to all GetClassName functions (part of all AI api classes)
parent
d1787d884c
commit
7b62e4dc8e
|
@ -24,6 +24,7 @@ class AIAbstractListSorter;
|
|||
*/
|
||||
class AIAbstractList : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIAbstractList"; }
|
||||
|
||||
/** Type of sorter */
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
*/
|
||||
class AIAccounting : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIAccounting"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
*/
|
||||
class AIAirport : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIAirport"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
*/
|
||||
class AIBase : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIBase"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIBaseStation : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIBaseStation"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -41,6 +41,7 @@ public:
|
|||
ERR_BRIDGE_HEADS_NOT_ON_SAME_HEIGHT, // [STR_ERROR_BRIDGEHEADS_NOT_SAME_HEIGHT]
|
||||
};
|
||||
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIBridge"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIBridgeList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIBridgeList"; }
|
||||
AIBridgeList();
|
||||
};
|
||||
|
@ -30,6 +31,7 @@ public:
|
|||
*/
|
||||
class AIBridgeList_Length : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIBridgeList_Length"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
*/
|
||||
class AICargo : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AICargo"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AICargoList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AICargoList"; }
|
||||
AICargoList();
|
||||
};
|
||||
|
@ -30,6 +31,7 @@ public:
|
|||
*/
|
||||
class AICargoList_IndustryAccepting : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AICargoList_IndustryAccepting"; }
|
||||
|
||||
/**
|
||||
|
@ -44,6 +46,7 @@ public:
|
|||
*/
|
||||
class AICargoList_IndustryProducing : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AICargoList_IndustryProducing"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
*/
|
||||
class AICompany : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AICompany"; }
|
||||
|
||||
/** Different constants related to CompanyID. */
|
||||
|
|
|
@ -24,6 +24,7 @@ class AIController {
|
|||
friend class AIInstance;
|
||||
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIController"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
class AIDate : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIDate"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIDepotList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIDepotList"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
*/
|
||||
class AIEngine : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEngine"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIEngineList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEngineList"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
*/
|
||||
class AIError : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIError"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIEvent : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEvent"; }
|
||||
|
||||
/**
|
||||
|
@ -81,6 +82,7 @@ public:
|
|||
/**
|
||||
* The name of the class, needed by several sub-processes.
|
||||
*/
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventController"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
class AIEventVehicleCrashed : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventVehicleCrashed"; }
|
||||
|
||||
/**
|
||||
|
@ -84,6 +85,7 @@ private:
|
|||
*/
|
||||
class AIEventSubsidyOffer : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventSubsidyOffer"; }
|
||||
|
||||
/**
|
||||
|
@ -116,6 +118,7 @@ private:
|
|||
*/
|
||||
class AIEventSubsidyOfferExpired : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventSubsidyOfferExpired"; }
|
||||
|
||||
/**
|
||||
|
@ -148,6 +151,7 @@ private:
|
|||
*/
|
||||
class AIEventSubsidyAwarded : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventSubsidyAwarded"; }
|
||||
|
||||
/**
|
||||
|
@ -180,6 +184,7 @@ private:
|
|||
*/
|
||||
class AIEventSubsidyExpired : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventSubsidyExpired"; }
|
||||
|
||||
/**
|
||||
|
@ -214,6 +219,7 @@ private:
|
|||
*/
|
||||
class AIEventEnginePreview : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventEnginePreview"; }
|
||||
|
||||
/**
|
||||
|
@ -298,6 +304,7 @@ private:
|
|||
*/
|
||||
class AIEventCompanyNew : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventCompanyNew"; }
|
||||
|
||||
/**
|
||||
|
@ -331,6 +338,7 @@ private:
|
|||
*/
|
||||
class AIEventCompanyInTrouble : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventCompanyInTrouble"; }
|
||||
|
||||
/**
|
||||
|
@ -363,6 +371,7 @@ private:
|
|||
*/
|
||||
class AIEventCompanyAskMerger : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventCompanyAskMerger"; }
|
||||
|
||||
/**
|
||||
|
@ -412,6 +421,7 @@ private:
|
|||
*/
|
||||
class AIEventCompanyMerger : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventCompanyMerger"; }
|
||||
|
||||
/**
|
||||
|
@ -456,6 +466,7 @@ private:
|
|||
*/
|
||||
class AIEventCompanyBankrupt : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventCompanyBankrupt"; }
|
||||
|
||||
/**
|
||||
|
@ -488,6 +499,7 @@ private:
|
|||
*/
|
||||
class AIEventVehicleLost : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventVehicleLost"; }
|
||||
|
||||
/**
|
||||
|
@ -520,6 +532,7 @@ private:
|
|||
*/
|
||||
class AIEventVehicleWaitingInDepot : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventVehicleWaitingInDepot"; }
|
||||
|
||||
/**
|
||||
|
@ -552,6 +565,7 @@ private:
|
|||
*/
|
||||
class AIEventVehicleUnprofitable : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventVehicleUnprofitable"; }
|
||||
|
||||
/**
|
||||
|
@ -584,6 +598,7 @@ private:
|
|||
*/
|
||||
class AIEventIndustryOpen : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventIndustryOpen"; }
|
||||
|
||||
/**
|
||||
|
@ -616,6 +631,7 @@ private:
|
|||
*/
|
||||
class AIEventIndustryClose : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventIndustryClose"; }
|
||||
|
||||
/**
|
||||
|
@ -648,6 +664,7 @@ private:
|
|||
*/
|
||||
class AIEventEngineAvailable : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventEngineAvailable"; }
|
||||
|
||||
/**
|
||||
|
@ -680,6 +697,7 @@ private:
|
|||
*/
|
||||
class AIEventStationFirstVehicle : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventStationFirstVehicle"; }
|
||||
|
||||
/**
|
||||
|
@ -721,6 +739,7 @@ private:
|
|||
*/
|
||||
class AIEventDisasterZeppelinerCrashed : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventDisasterZeppelinerCrashed"; }
|
||||
|
||||
/**
|
||||
|
@ -753,6 +772,7 @@ private:
|
|||
*/
|
||||
class AIEventDisasterZeppelinerCleared : public AIEvent {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIEventDisasterZeppelinerCleared"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
*/
|
||||
class AIExecMode : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIExecMode"; }
|
||||
|
||||
private:
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
*/
|
||||
class AIGameSettings : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIGameSettings"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIGroup : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIGroup"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIGroupList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIGroupList"; }
|
||||
AIGroupList();
|
||||
};
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
*/
|
||||
class AIIndustry : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIIndustry"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIIndustryList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIIndustryList"; }
|
||||
AIIndustryList();
|
||||
};
|
||||
|
@ -30,6 +31,7 @@ public:
|
|||
*/
|
||||
class AIIndustryList_CargoAccepting : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIIndustryList_CargoAccepting"; }
|
||||
|
||||
/**
|
||||
|
@ -45,6 +47,7 @@ public:
|
|||
*/
|
||||
class AIIndustryList_CargoProducing : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIIndustryList_CargoProducing"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIIndustryType : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIIndustryType"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIIndustryTypeList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIIndustryTypeList"; }
|
||||
AIIndustryTypeList();
|
||||
};
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIList"; }
|
||||
|
||||
public:
|
||||
|
|
|
@ -23,6 +23,7 @@ class AILog : public AIObject {
|
|||
friend class AIController;
|
||||
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AILog"; }
|
||||
|
||||
#ifndef EXPORT_SKIP
|
||||
|
|
|
@ -22,6 +22,7 @@ class AIMap : public AIObject {
|
|||
public:
|
||||
static const int TILE_INVALID = (int)INVALID_TILE; ///< Invalid TileIndex.
|
||||
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIMap"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIMarine : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIMarine"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIOrder : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIOrder"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIRail : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIRail"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AIRailTypeList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIRailTypeList"; }
|
||||
AIRailTypeList();
|
||||
};
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIRoad : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIRoad"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AISign : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AISign"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AISignList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AISignList"; }
|
||||
AISignList();
|
||||
};
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
class AIStation : public AIBaseStation {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIStation"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIStationList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIStationList"; }
|
||||
|
||||
/**
|
||||
|
@ -35,6 +36,7 @@ public:
|
|||
*/
|
||||
class AIStationList_Vehicle : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIStationList_Vehicle"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AISubsidy : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AISubsidy"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AISubsidyList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AISubsidyList"; }
|
||||
AISubsidyList();
|
||||
};
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
*/
|
||||
class AITestMode : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITestMode"; }
|
||||
|
||||
private:
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AITile : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITile"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AITileList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITileList"; }
|
||||
|
||||
/**
|
||||
|
@ -63,6 +64,7 @@ public:
|
|||
*/
|
||||
class AITileList_IndustryAccepting : public AITileList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITileList_IndustryAccepting"; }
|
||||
|
||||
/**
|
||||
|
@ -81,6 +83,7 @@ public:
|
|||
*/
|
||||
class AITileList_IndustryProducing : public AITileList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITileList_IndustryProducing"; }
|
||||
|
||||
/**
|
||||
|
@ -99,6 +102,7 @@ public:
|
|||
*/
|
||||
class AITileList_StationType : public AITileList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITileList_StationType"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AITown : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITown"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AITownList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITownList"; }
|
||||
AITownList();
|
||||
};
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
class AITunnel : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AITunnel"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
class AIVehicle : public AIObject {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicle"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIVehicleList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicleList"; }
|
||||
AIVehicleList();
|
||||
};
|
||||
|
@ -31,6 +32,7 @@ public:
|
|||
*/
|
||||
class AIVehicleList_Station : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicleList_Station"; }
|
||||
|
||||
/**
|
||||
|
@ -50,6 +52,7 @@ public:
|
|||
*/
|
||||
class AIVehicleList_Depot : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicleList_Depot"; }
|
||||
|
||||
/**
|
||||
|
@ -64,6 +67,7 @@ public:
|
|||
*/
|
||||
class AIVehicleList_SharedOrders : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicleList_SharedOrders"; }
|
||||
|
||||
/**
|
||||
|
@ -78,6 +82,7 @@ public:
|
|||
*/
|
||||
class AIVehicleList_Group : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicleList_Group"; }
|
||||
|
||||
/**
|
||||
|
@ -92,6 +97,7 @@ public:
|
|||
*/
|
||||
class AIVehicleList_DefaultGroup : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIVehicleList_DefaultGroup"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIWaypoint : public AIBaseStation {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIWaypoint"; }
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
*/
|
||||
class AIWaypointList : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIWaypointList"; }
|
||||
|
||||
/**
|
||||
|
@ -35,6 +36,7 @@ public:
|
|||
*/
|
||||
class AIWaypointList_Vehicle : public AIAbstractList {
|
||||
public:
|
||||
/** Get the name of this class to identify it towards squirrel. */
|
||||
static const char *GetClassName() { return "AIWaypointList_Vehicle"; }
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue