Files
PlanetFleet/depthCharge.cpp
T
2026-01-28 19:12:51 +02:00

14 lines
283 B
C++

#include "depthCharge.h"
namespace battleship{
using namespace vb01;
DepthCharge::DepthCharge(Unit *un, int id, Vector3 pos, Quaternion rot) : Projectile(un, id, pos, rot){}
void DepthCharge::update(){
Projectile::update();
if(!remove) checkUnitCollision();
}
}