mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
21 lines
365 B
C++
Executable File
21 lines
365 B
C++
Executable File
#pragma once
|
|
#ifndef CRUISER_H
|
|
#define CRUISER_H
|
|
|
|
#include "vessel.h"
|
|
#include "player.h"
|
|
|
|
namespace battleship {
|
|
class Cruiser : public Vessel {
|
|
public:
|
|
Cruiser(Player*, vb01::Vector3, int);
|
|
void launch(Order);
|
|
private:
|
|
bool canFire();
|
|
int guidedMissiles, reloadTime = 5000;
|
|
s64 lastUpdateTime;
|
|
};
|
|
}
|
|
|
|
#endif
|