Files
PlanetFleet/tooltip.cpp
T
2022-01-13 20:21:42 +02: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(){
}
}