mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
16 lines
260 B
C++
16 lines
260 B
C++
#ifndef SUBMARINE_H
|
|
#define SUBMARINE_H
|
|
|
|
#include "vehicle.h"
|
|
|
|
namespace battleship{
|
|
class Submarine : public Vehicle{
|
|
public:
|
|
Submarine(Player*, int, vb01::Vector3, vb01::Quaternion, Unit::State);
|
|
private:
|
|
bool validateLaunchOrder();
|
|
};
|
|
}
|
|
|
|
#endif
|