mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
245 B
C++
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(){
|
|
}
|
|
}
|