Files
PlanetFleet/structure.cpp
T
2022-11-26 20:09:23 +02:00

12 lines
278 B
C++

#include "structure.h"
using namespace gameBase;
using namespace vb01;
using namespace std;
namespace battleship{
Structure::Structure(Player *player, int id, Vector3 pos, Quaternion rot, int buildStatus) : Unit(player, id, pos, rot){
this->buildStatus = buildStatus;
}
}