Files
PlanetFleet/tooltip.h
T
2021-10-30 08:48:21 +03:00

21 lines
370 B
C++

#ifndef TOOLTIP_H
#define TOOLTIP_H
#include "abstractBitmapText.h"
namespace game{
namespace gui{
class Tooltip{
public:
Tooltip(irr::core::vector2di, irr::core::stringw);
~Tooltip();
void update();
private:
irr::core::vector2di pos;
BitmapText *text;
};
}
}
#endif