Skip to content

Commit

Permalink
SDK: FEnum*->UEnum* oops
Browse files Browse the repository at this point in the history
sdfsfdhdfh
  • Loading branch information
praydog committed Dec 18, 2023
1 parent cb79a9a commit 0140ce9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/sdk/FEnumProperty.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace sdk {
struct FNumericProperty;
struct FEnum;
struct UEnum;

class FEnumProperty : public FProperty {
public:
Expand All @@ -16,8 +16,8 @@ class FEnumProperty : public FProperty {
return *(FNumericProperty**)((uintptr_t)this + s_underlying_prop_offset);
}

FEnum* get_enum() const {
return *(FEnum**)((uintptr_t)this + s_enum_offset);
UEnum* get_enum() const {
return *(UEnum**)((uintptr_t)this + s_enum_offset);
}

private:
Expand Down

0 comments on commit 0140ce9

Please sign in to comment.