X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIAircraft.hxx;h=ff7afad3ef8270572bff66aa13ea1e1608dd887c;hb=e16f772e54216b0088ca9cb3f3b0fb062be8bfdb;hp=1d81037261786083a450dcd3501a16971cda5d60;hpb=6ff61836fe1d24842849a2aa3e6f1b0008fca950;p=flightgear.git diff --git a/src/AIModel/AIAircraft.hxx b/src/AIModel/AIAircraft.hxx index 1d8103726..ff7afad3e 100644 --- a/src/AIModel/AIAircraft.hxx +++ b/src/AIModel/AIAircraft.hxx @@ -76,6 +76,7 @@ public: void setTaxiClearanceRequest(bool arg) { needsTaxiClearance = arg; }; bool getTaxiClearanceRequest() { return needsTaxiClearance; }; FGAISchedule * getTrafficRef() { return trafficRef; }; + void setTrafficRef(FGAISchedule *ref) { trafficRef = ref; }; virtual const char* getTypeString(void) const { return "aircraft"; } @@ -94,6 +95,7 @@ public: inline double airspeed() const { return props->getFloatValue("velocities/airspeed-kt");}; std::string atGate(); + void checkTcas(); protected: void Run(double dt);