summaryrefslogtreecommitdiff
path: root/src/engine/objects/Trophy.h
diff options
context:
space:
mode:
authorMegaMech <inkstudios1@hotmail.com>2024-12-13 15:19:39 -0700
committerMegaMech <inkstudios1@hotmail.com>2024-12-13 15:19:39 -0700
commit7f22f75db7fa7a1b2149bc953d2a159c52bc5e8b (patch)
tree71cacfc66228dcd9f509fc2d7894689b426778b7 /src/engine/objects/Trophy.h
parent517a59fbf49a4d2bb59aefb10f2acfcdd17ff75e (diff)
Trophy, Object impl, and cleanup
Diffstat (limited to 'src/engine/objects/Trophy.h')
-rw-r--r--src/engine/objects/Trophy.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/engine/objects/Trophy.h b/src/engine/objects/Trophy.h
index 76834d77e..d73e04929 100644
--- a/src/engine/objects/Trophy.h
+++ b/src/engine/objects/Trophy.h
@@ -15,6 +15,17 @@ extern "C" {
#include "some_data.h"
}
+//! @todo move this like World.h or something
+struct FVector {
+ float x, y, z;
+
+ FVector& operator=(const FVector& other) {
+ x = other.x;
+ y = other.y;
+ z = other.z;
+ return *this;
+ }
+};
class OTrophy : public OObject {
public: