]> ruin.nu Git - hbs.git/blob - bs/fleet.h
Initial commit of unittype.cpp and unittype.h
[hbs.git] / bs / fleet.h
1 /***************************************************************************
2                           fleet.h  -  description
3                              -------------------
4     begin                : Tue Jan 22 2002
5     copyright            : (C) 2002 by Michael Andreen
6     email                : whale@linux.nu
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #ifndef FLEET_H
19 #define FLEET_H
20
21 #include <map>
22 #include <string>
23
24 /**
25   *@author Michael Andreen
26   *This is the engine for the whole battlesystem.
27   *One of the few parts that I plan make fully portable.
28   */
29
30 class Fleet 
31 {
32 public: 
33         Fleet();
34         ~Fleet();
35
36 private:
37         string  m_name;
38         string  m_race;
39         map<string, units> 
40 };
41
42 #endif