This commit is contained in:
Milxnor
2023-03-11 23:30:19 -05:00
parent 07950d84a2
commit ea7086c85f
28 changed files with 714 additions and 125 deletions

View File

@@ -6,13 +6,13 @@
struct FFrame : public FOutputDevice // https://github.com/EpicGames/UnrealEngine/blob/7acbae1c8d1736bb5a0da4f6ed21ccb237bc8851/Engine/Source/Runtime/CoreUObject/Public/UObject/Stack.h#L83
{
public:
void** VFT;
void** VFT; // 10
// Variables.
UFunction* Node;
UObject* Object;
uint8* Code;
uint8* Locals;
UFunction* Node; // 16
UObject* Object; // 24 // 0x18
uint8* Code; // 32 // 0x20
uint8* Locals; // 40
// MORE STUFF HERE
};