Files
PlanetFleet/source/gui/tooltip.cpp
T
2026-05-21 20:28:52 +03:00

17 lines
245 B
C++

#include "tooltip.h"
using namespace std;
using namespace vb01;
namespace battleship{
Tooltip::Tooltip(Vector2 pos, string entry){
this->pos = pos;
}
Tooltip::~Tooltip(){
}
void Tooltip::update(){
}
}