]> ruin.nu Git - hbs.git/blobdiff - bs/fleet.h
Initial commit of unittype.cpp and unittype.h
[hbs.git] / bs / fleet.h
index 16422dd7b80b163ed2dec9913ec0b66f1c46e058..7a2f489e57c3c5858520aa97bfe7ad3c8ba61dd8 100644 (file)
 #ifndef FLEET_H
 #define FLEET_H
 
+#include <map>
+#include <string>
 
 /**
   *@author Michael Andreen
   *This is the engine for the whole battlesystem.
+  *One of the few parts that I plan make fully portable.
   */
 
 class Fleet 
@@ -29,6 +32,11 @@ class Fleet
 public: 
        Fleet();
        ~Fleet();
+
+private:
+       string  m_name;
+       string  m_race;
+       map<string, units> 
 };
 
 #endif