This commit is contained in:
CatAClock 2025-06-12 21:53:03 -07:00
parent 6c71f50699
commit da838ce296
4 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,6 @@
#ifndef BULLET_HPP
#define BULLET_HPP
#include <godot_cpp/classes/rigid_body2d.hpp>
namespace godot {
@ -16,3 +19,5 @@ namespace godot {
};
};
#endif

View file

@ -1,3 +1,6 @@
#ifndef ENEMY_HPP
#define ENEMY_HPP
#include <godot_cpp/classes/rigid_body2d.hpp>
namespace godot {
@ -16,3 +19,5 @@ namespace godot {
};
};
#endif

View file

@ -1,3 +1,6 @@
#ifndef WAVE_HPP
#define WAVE_HPP
#include <godot_cpp/classes/node2d.hpp>
namespace godot {
@ -16,3 +19,5 @@ namespace godot {
};
};
#endif