X-Git-Url: https://ruin.nu/git/?p=hbs.git;a=blobdiff_plain;f=bs%2Ffleet.h;h=7c2f817f4f60b6afb43d7c9d87633f072b3c9fc3;hp=7a2f489e57c3c5858520aa97bfe7ad3c8ba61dd8;hb=8dda24464f8a02b643734cb298c712baabd41e48;hpb=7efc7b8bb82fc6948c92e8e205c8046c8ec200e6 diff --git a/bs/fleet.h b/bs/fleet.h index 7a2f489..7c2f817 100644 --- a/bs/fleet.h +++ b/bs/fleet.h @@ -21,10 +21,12 @@ #include #include -/** +#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 + std::string m_Name; + std::string m_Race; + std::map > m_Fleet; + + static std::map m_Units; }; #endif