Files
PlanetFleet/tooltip.h
T
2021-11-01 11:49:56 +02:00

19 lines
282 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;
//BitmapText *text;
};
}
#endif