X-Git-Url: https://ruin.nu/git/?p=hbs.git;a=blobdiff_plain;f=bs%2Ffleet.h;h=7fb4f44d182a884119dd9e8773450c49310e91e1;hp=0d81fd2b5de4637c15d5970385ee77d29a10f495;hb=f1e79e13d76a63700e6345503e338afaa93c102d;hpb=dd9dce44b9c28f747be79aab2ec1032663bea1c6 diff --git a/bs/fleet.h b/bs/fleet.h index 0d81fd2..7fb4f44 100644 --- a/bs/fleet.h +++ b/bs/fleet.h @@ -64,10 +64,20 @@ public: */ int NumberOfShips(); + /**Sets the estimated time of arrival. The time as a single integer, + * in relation to the current time. For example if the current time is + * 10, and the arrival is at 12, then the eta is 2. + */ + void setETA(int eta); + /**Return the estimated time of arrival. It's counted from the current time (tick). + */ + int ETA(); + protected: std::string m_sName; std::string m_sRace; + int m_iETA; std::map > m_Fleet; static std::map s_Units;