feat: started work on enemy rifleman

This commit is contained in:
Sara Gerretsen 2025-10-25 13:23:30 +02:00
parent 2f6c7e13e5
commit c4bd5edb54
2 changed files with 71 additions and 0 deletions

View 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;
}
}