feat: started work on enemy rifleman
This commit is contained in:
parent
2f6c7e13e5
commit
c4bd5edb54
2 changed files with 71 additions and 0 deletions
26
modules/wave_survival/enemies/enemy_rifleman.cpp
Normal file
26
modules/wave_survival/enemies/enemy_rifleman.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include "enemy_rifleman.h"
|
||||
|
||||
void EnemyRifleman::_bind_methods() {
|
||||
}
|
||||
|
||||
void EnemyRifleman::on_child_entered() {
|
||||
}
|
||||
|
||||
void EnemyRifleman::ready() {
|
||||
}
|
||||
|
||||
void EnemyRifleman::_notification(int what) {
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
return;
|
||||
}
|
||||
switch (what) {
|
||||
default:
|
||||
return;
|
||||
case NOTIFICATION_ENTER_TREE:
|
||||
enter_tree();
|
||||
return;
|
||||
case NOTIFICATION_READY:
|
||||
ready();
|
||||
return;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue