mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
18 lines
288 B
C++
18 lines
288 B
C++
#ifndef MISSILE_H
|
|
#define MISSILE_H
|
|
|
|
#include "projectile.h"
|
|
|
|
namespace battleship{
|
|
class Missile : public Projectile{
|
|
public:
|
|
Missile(Unit*, int, vb01::Vector3, vb01::Vector3, vb01::Quaternion);
|
|
~Missile();
|
|
void update();
|
|
private:
|
|
vb01::Vector3 targetPos;
|
|
};
|
|
}
|
|
|
|
#endif
|