mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
21 lines
337 B
C++
21 lines
337 B
C++
#ifndef TOOLTIP_H
|
|
#define TOOLTIP_H
|
|
|
|
#include <text.h>
|
|
|
|
namespace game{
|
|
namespace gui{
|
|
class Tooltip{
|
|
public:
|
|
Tooltip(vb01::Vector2, std::string);
|
|
~Tooltip();
|
|
void update();
|
|
private:
|
|
vb01::Vector2 pos;
|
|
//BitmapText *text;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|