blob: 523d11d6fc5cb025586acf862437a1938f13adc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "movinggameobject.h"
class Kamikaze : public MovingGameObject {
public:
Kamikaze(float pos_x, float pos_y, float size_x, float size_y, float orientation, string texture, float speed);
virtual ~Kamikaze();
void update() override;
void draw() override;
};
|