diff options
| author | MegaMech <inkstudios1@hotmail.com> | 2024-12-13 15:19:39 -0700 |
|---|---|---|
| committer | MegaMech <inkstudios1@hotmail.com> | 2024-12-13 15:19:39 -0700 |
| commit | 7f22f75db7fa7a1b2149bc953d2a159c52bc5e8b (patch) | |
| tree | 71cacfc66228dcd9f509fc2d7894689b426778b7 /src/engine/objects/Trophy.h | |
| parent | 517a59fbf49a4d2bb59aefb10f2acfcdd17ff75e (diff) | |
Trophy, Object impl, and cleanup
Diffstat (limited to 'src/engine/objects/Trophy.h')
| -rw-r--r-- | src/engine/objects/Trophy.h | 11 |
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: |
