mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
21 lines
370 B
C++
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
|