mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
16 lines
248 B
C++
16 lines
248 B
C++
#ifndef DEPTH_CHARGE_H
|
|
#define DEPTH_CHARGE_H
|
|
|
|
#include "projectile.h"
|
|
|
|
namespace battleship{
|
|
class DepthCharge : public Projectile{
|
|
public:
|
|
DepthCharge(Unit*, int, vb01::Vector3, vb01::Quaternion);
|
|
void update();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|