mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-09-03 04:23:36 +00:00
23 lines
437 B
C++
Executable File
23 lines
437 B
C++
Executable File
#pragma once
|
|
#ifndef DEMO_JET_H
|
|
#define DEMO_JET_H
|
|
|
|
#include"Jet.h"
|
|
#include"Player.h"
|
|
|
|
namespace game{
|
|
namespace content {
|
|
class DemoJet : public Jet {
|
|
public:
|
|
DemoJet(core::GameManager*, Player*,vector3df, int, bool = 1);
|
|
void attack(Order);
|
|
void update();
|
|
private:
|
|
float length=1;
|
|
int damage=250;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|