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