mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
decapitalized files
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user