feat: created enemy rifleman class
This commit is contained in:
parent
23be58a31c
commit
d8e6177d5f
11
modules/wave_survival/enemies/enemy_rifleman.h
Normal file
11
modules/wave_survival/enemies/enemy_rifleman.h
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef ENEMY_RIFLEMAN_H
|
||||||
|
#define ENEMY_RIFLEMAN_H
|
||||||
|
|
||||||
|
#include "wave_survival/enemy_body.h"
|
||||||
|
|
||||||
|
class EnemyRifleman : public EnemyBody {
|
||||||
|
GDCLASS(EnemyRifleman, EnemyBody);
|
||||||
|
static void _bind_methods();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // !ENEMY_RIFLEMAN_H
|
Loading…
Reference in a new issue