mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
17 lines
325 B
C++
Executable File
17 lines
325 B
C++
Executable File
#pragma once
|
|
#ifndef TORPEDO_H
|
|
#define TORPEDO_H
|
|
|
|
#include "projectile.h"
|
|
|
|
namespace battleship{
|
|
class Torpedo : public Projectile {
|
|
public:
|
|
Torpedo(Unit*, vb01::Vector3, vb01::Vector3, vb01::Vector3, vb01::Vector3, int, int, int);
|
|
~Torpedo(){}
|
|
void update();
|
|
};
|
|
}
|
|
|
|
#endif
|