Skip to content

Commit

Permalink
Plugins: Forgot to add find_property
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Jun 16, 2024
1 parent 4643b85 commit 02ea014
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/mods/PluginLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,10 @@ UEVR_UStructFunctions g_ustruct_functions {
[](UEVR_UStructHandle strct, const wchar_t* name) {
return (UEVR_UFunctionHandle)USTRUCT(strct)->find_function(name);
},
// find_property
[](UEVR_UStructHandle strct, const wchar_t* name) {
return (UEVR_FPropertyHandle)USTRUCT(strct)->find_property(name);
},
};

#define UCLASS(x) ((sdk::UClass*)x)
Expand Down

0 comments on commit 02ea014

Please sign in to comment.