From: Michael Andreen Date: Tue, 22 Jan 2002 18:22:03 +0000 (+0000) Subject: Initial commit of fleet.cpp and fleet.h X-Git-Tag: HBS_0_1_0~57 X-Git-Url: https://ruin.nu/git/?p=hbs.git;a=commitdiff_plain;h=a779cd198be469897a9dec45c9b2ba38b183de2f Initial commit of fleet.cpp and fleet.h --- diff --git a/bs/fleet.cpp b/bs/fleet.cpp new file mode 100644 index 0000000..a57d25e --- /dev/null +++ b/bs/fleet.cpp @@ -0,0 +1,23 @@ +/*************************************************************************** + fleet.cpp - 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. * + * * + ***************************************************************************/ + +#include "fleet.h" + +Fleet::Fleet(){ +} +Fleet::~Fleet(){ +} diff --git a/bs/fleet.h b/bs/fleet.h new file mode 100644 index 0000000..16422dd --- /dev/null +++ b/bs/fleet.h @@ -0,0 +1,34 @@ +/*************************************************************************** + 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 diff --git a/bs/fleet.h~ b/bs/fleet.h~ new file mode 100644 index 0000000..8e0d3a7 --- /dev/null +++ b/bs/fleet.h~ @@ -0,0 +1,33 @@ +/*************************************************************************** + 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