mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
14 lines
253 B
C++
14 lines
253 B
C++
#include "transport.h"
|
|
#include "player.h"
|
|
|
|
#include <solUtil.h>
|
|
|
|
namespace battleship{
|
|
using namespace vb01;
|
|
using namespace gameBase;
|
|
|
|
Transport::Transport(Player *player, int id, Vector3 pos, Quaternion rot) : Vehicle(player, id, pos, rot){
|
|
|
|
}
|
|
}
|