/*************************************************************************** fleet.h - description ------------------- begin : Tue Jan 22 2002 copyright : (C) 2002 by Michael Andreen email : whale@linux.nu ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef FLEET_H #define FLEET_H /** *@author Michael Andreen *This is the engine for the whole battlesystem. */ class Fleet { public: Fleet(); ~Fleet(); }; #endif