Files
PlanetFleet/source/gui/tooltip.h
2026-05-21 20:28:52 +03:00

18 lines
254 B
C++

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