aboutsummaryrefslogtreecommitdiff
path: root/game/player/PlayerBulletScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/player/PlayerBulletScript.h')
-rw-r--r--game/player/PlayerBulletScript.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/game/player/PlayerBulletScript.h b/game/player/PlayerBulletScript.h
index 559b815..0637790 100644
--- a/game/player/PlayerBulletScript.h
+++ b/game/player/PlayerBulletScript.h
@@ -2,10 +2,10 @@
#include <crepe/api/BehaviorScript.h>
#include <crepe/api/Script.h>
-class PlayerBulletScript : public crepe::Script{
- public:
- void init() override;
- void fixed_update(crepe::duration_t dt) override;
- bool on_collide(const crepe::CollisionEvent& e);
- void despawn_bullet();
+class PlayerBulletScript : public crepe::Script {
+public:
+ void init() override;
+ void fixed_update(crepe::duration_t dt) override;
+ bool on_collide(const crepe::CollisionEvent & e);
+ void despawn_bullet();
};