]> ruin.nu Git - hbs.git/blobdiff - bs/fleet.h
Some fixes..
[hbs.git] / bs / fleet.h
index 7a2f489e57c3c5858520aa97bfe7ad3c8ba61dd8..7c2f817f4f60b6afb43d7c9d87633f072b3c9fc3 100644 (file)
 #include <map>
 #include <string>
 
-/**
+#include "unittype.h"
+
+//!This is the engine for the whole battlesystem.
+/**This is the engine for the whole battlesystem.
+  *    One of the few parts that I plan make fully portable.
   *@author Michael Andreen
-  *This is the engine for the whole battlesystem.
-  *One of the few parts that I plan make fully portable.
   */
 
 class Fleet 
@@ -34,9 +36,11 @@ public:
        ~Fleet();
 
 private:
-       string  m_name;
-       string  m_race;
-       map<string, units> 
+       std::string     m_Name;
+       std::string     m_Race;
+       std::map<std::string, std::vector<int> >        m_Fleet;
+
+       static std::map<std::string, UnitType>  m_Units;
 };
 
 #endif