Skip to content

Commit

Permalink
Added missing operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Hecklezz committed Oct 17, 2017
1 parent 8d2cb47 commit d92d1c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions SDK/PUBG_CoreUObject_structs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,10 @@ namespace Classes {
__forceinline FVector FVector::operator-(const FVector& V) {
return FVector(X - V.X, Y - V.Y, Z - V.Z);
}

__forceinline FVector FVector::operator+(const FVector& V) {
return FVector(X + V.X, Y + V.Y, Z + V.Z);
}

__forceinline FVector FVector::operator*(float Scale) const {
return FVector(X * Scale, Y * Scale, Z * Scale);
Expand Down

0 comments on commit d92d1c2

Please sign in to comment.