#ifndef TOOLTIP_H #define TOOLTIP_H #include namespace battleship{ class Tooltip{ public: Tooltip(vb01::Vector2, std::string); ~Tooltip(); void update(); private: vb01::Vector2 pos; }; } #endif