mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
fix s11 idk
This commit is contained in:
@@ -31,7 +31,7 @@ public:
|
||||
FName NamePrivate;
|
||||
UObject* OuterPrivate;
|
||||
|
||||
static inline void (*ProcessEventOriginal)(UObject*, UFunction*, void*);
|
||||
static inline void (*ProcessEventOriginal)(const UObject*, UFunction*, void*);
|
||||
|
||||
/* virtual */ void ProcessEvent(UFunction* Function, void* Parms = nullptr)
|
||||
{
|
||||
@@ -39,6 +39,12 @@ public:
|
||||
ProcessEventOriginal(this, Function, Parms);
|
||||
}
|
||||
|
||||
/* virtual */ void ProcessEvent(UFunction* Function, void* Parms = nullptr) const
|
||||
{
|
||||
// LOG_INFO(LogDev, "PE: 0x{:x}", __int64(ProcessEventOriginal) - __int64(GetModuleHandleW(0)));
|
||||
ProcessEventOriginal(this, Function, Parms);
|
||||
}
|
||||
|
||||
std::string GetName() { return NamePrivate.ToString(); }
|
||||
std::string GetFullName();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user