summaryrefslogtreecommitdiff
path: root/src/engine/objects/BombKart.h
diff options
context:
space:
mode:
authorKiritoDv <36680385+KiritoDv@users.noreply.github.com>2025-05-16 02:44:40 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2025-05-16 02:44:40 +0000
commitb53a5dbcfa24ef2aa4860b6d9512709976686de8 (patch)
tree441f2bb9c0bc8f955eb9289d19b13beab5c239c5 /src/engine/objects/BombKart.h
parentbdf5ca8d603ae56ac275bebf9fde58ae72484d76 (diff)
clang formatclang-format
Diffstat (limited to 'src/engine/objects/BombKart.h')
-rw-r--r--src/engine/objects/BombKart.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/engine/objects/BombKart.h b/src/engine/objects/BombKart.h
index 29069a00f..b236a13d9 100644
--- a/src/engine/objects/BombKart.h
+++ b/src/engine/objects/BombKart.h
@@ -18,12 +18,12 @@ extern "C" {
/**
* Used in VS mode
- *
+ *
* This differs from the other vehicle classes in that it does not get added to the standard actor list
* So this is sort of its own thing. Draw call in different place too.
*/
class OBombKart : public OObject {
-public:
+ public:
enum States : uint16_t { // 0,1,3,5
DISABLED,
CCW,
@@ -39,7 +39,7 @@ public:
Vec3f Pos;
Vec3f WheelPos[4]; //! @todo Turn WheelPos into a struct
f32 Unk_3C;
- u16 SomeRot; // Some angle
+ u16 SomeRot; // Some angle
u16 WaypointIndex; // The waypoint the kart circles
States State = States::DISABLED;
u16 BounceTimer = 0;
@@ -66,7 +66,8 @@ public:
void SomeRender(Vec3f arg1);
void LoadMtx();
void Waypoint(s32 screenId);
-private:
+
+ private:
static size_t _count;
s32 _idx;
Player* FindTarget();
@@ -74,6 +75,4 @@ private:
Vec3f _spawnPos;
Player* _target = NULL;
-
-
};