diff options
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: |
