Add some stub functions to FGTower to aid ATC dialog box development
This commit is contained in:
parent
3cb4d55342
commit
4b9c0ad822
2 changed files with 19 additions and 1 deletions
|
@ -102,3 +102,19 @@ void FGTower::Update() {
|
|||
}
|
||||
++play;
|
||||
}
|
||||
|
||||
void FGTower::RequestLandingClearance(string ID) {
|
||||
cout << "Request Landing Clearance called...\n";
|
||||
}
|
||||
void FGTower::RequestDepartureClearance(string ID) {
|
||||
cout << "Request Departure Clearance called...\n";
|
||||
}
|
||||
//void FGTower::ReportFinal(string ID);
|
||||
//void FGTower::ReportLongFinal(string ID);
|
||||
//void FGTower::ReportOuterMarker(string ID);
|
||||
//void FGTower::ReportMiddleMarker(string ID);
|
||||
//void FGTower::ReportInnerMarker(string ID);
|
||||
//void FGTower::ReportGoingAround(string ID);
|
||||
void FGTower::ReportRunwayVacated(string ID) {
|
||||
cout << "Report Runway Vacated Called...\n";
|
||||
}
|
||||
|
|
|
@ -83,7 +83,9 @@ class FGTower : public FGATC {
|
|||
void Init();
|
||||
|
||||
void Update();
|
||||
|
||||
|
||||
void RequestLandingClearance(string ID);
|
||||
void RequestDepartureClearance(string ID);
|
||||
void ReportFinal(string ID);
|
||||
void ReportLongFinal(string ID);
|
||||
void ReportOuterMarker(string ID);
|
||||
|
|
Loading…
Reference in a new issue