mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-27 03:53:33 +00:00
21 lines
367 B
C++
Executable File
21 lines
367 B
C++
Executable File
#pragma once
|
|
#ifndef DEMO_JET_H
|
|
#define DEMO_JET_H
|
|
|
|
#include "jet.h"
|
|
#include "player.h"
|
|
|
|
namespace battleship {
|
|
class DemoJet : public Jet {
|
|
public:
|
|
DemoJet(Player*, vb01::Vector3, int, bool = 1);
|
|
void attack(Order);
|
|
void update();
|
|
private:
|
|
float length = 1;
|
|
int damage = 250;
|
|
};
|
|
}
|
|
|
|
#endif
|