summaryrefslogtreecommitdiff
path: root/src/engine/Actor.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/Actor.h
parentbdf5ca8d603ae56ac275bebf9fde58ae72484d76 (diff)
clang formatclang-format
Diffstat (limited to 'src/engine/Actor.h')
-rw-r--r--src/engine/Actor.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/engine/Actor.h b/src/engine/Actor.h
index fb0a9f89e..c287329a4 100644
--- a/src/engine/Actor.h
+++ b/src/engine/Actor.h
@@ -9,28 +9,26 @@ extern "C" {
#include "camera.h"
#include "common_structs.h"
-
class AActor {
-public:
-
+ public:
/* 0x00 */ s16 Type = 0;
/* 0x02 */ s16 Flags;
/* 0x04 */ s16 Unk_04;
/* 0x06 */ s16 State;
/* 0x08 */ f32 Unk_08;
/* 0x0C */ f32 BoundingBoxSize;
- /* 0x10 */ Vec3s Rot = {0, 0, 0};
+ /* 0x10 */ Vec3s Rot = { 0, 0, 0 };
/* 0x16 */ s16 Unk_16;
/* 0x18 */ Vec3f Pos;
- /* 0x24 */ Vec3f Velocity = {0, 0, 0};
+ /* 0x24 */ Vec3f Velocity = { 0, 0, 0 };
/* 0x30 */ Collision Unk30;
uint8_t uuid[16];
const char* Name = "";
- FVector Scale = {1, 1, 1};
+ FVector Scale = { 1, 1, 1 };
Gfx* Model = NULL;
- virtual ~AActor() = default; // Virtual destructor for proper cleanup in derived classes
+ virtual ~AActor() = default; // Virtual destructor for proper cleanup in derived classes
explicit AActor();
@@ -44,5 +42,4 @@ public:
virtual void Destroy();
virtual bool IsMod();
};
-
-} \ No newline at end of file
+}