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