mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
290 B
C++
20 lines
290 B
C++
#ifndef SHELL_H
|
|
#define SHELL_H
|
|
|
|
#include "projectile.h"
|
|
|
|
#include <util.h>
|
|
|
|
namespace battleship{
|
|
class Shell : public Projectile{
|
|
public:
|
|
Shell(Unit*, int, vb01::Vector3, vb01::Quaternion);
|
|
void update();
|
|
private:
|
|
vb01::s64 initTime;
|
|
vb01::Vector3 initDir;
|
|
};
|
|
}
|
|
|
|
#endif
|