mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
22 lines
433 B
C++
22 lines
433 B
C++
#ifndef TOOLTIP_H
|
|
#define TOOLTIP_H
|
|
|
|
#include "abstractBitmapText.h"
|
|
|
|
namespace game{
|
|
namespace gui{
|
|
class Tooltip{
|
|
public:
|
|
Tooltip(core::GameManager*,irr::core::vector2di, irr::core::stringw);
|
|
~Tooltip();
|
|
void update();
|
|
private:
|
|
core::GameManager *gameManager;
|
|
irr::core::vector2di pos;
|
|
BitmapText *text;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|