generated from Persson-dev/Godot-Xmake
LaserGun without collisions
This commit is contained in:
19
src/Bullet.h
Normal file
19
src/Bullet.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <godot_cpp/classes/node3d.hpp>
|
||||
|
||||
namespace blitz {
|
||||
class Bullet : public godot::Node3D {
|
||||
GDCLASS(Bullet, godot::Node3D)
|
||||
protected:
|
||||
static void _bind_methods();
|
||||
|
||||
public:
|
||||
Bullet();
|
||||
~Bullet();
|
||||
|
||||
void _ready();
|
||||
void _physics_process(float delta);
|
||||
};
|
||||
|
||||
} // namespace blitz
|
||||
Reference in New Issue
Block a user