]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AICarrier.cxx
bb52128188ca1e1394af6b725b9d466a87c47123
[flightgear.git] / src / AIModel / AICarrier.cxx
1 // FGAICarrier - FGAIShip-derived class creates an AI aircraft carrier
2 //
3 // Written by David Culp, started October 2004.
4 // - davidculp2@comcast.net
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License as
8 // published by the Free Software Foundation; either version 2 of the
9 // License, or (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 #ifdef HAVE_CONFIG_H
21 #  include <config.h>
22 #endif
23
24 #include "AICarrier.hxx"
25
26
27 FGAICarrier::FGAICarrier(FGAIManager* mgr) : FGAIShip(mgr) {
28 }
29
30 FGAICarrier::~FGAICarrier() {
31 }
32
33
34 void FGAICarrier::update(double dt) {
35    FGAIShip::update(dt);
36 }
37
38
39