level showing up on items now, fix s19, improve performance, fix big issue on s5
This commit is contained in:
Milxnor
2023-05-21 00:38:59 -04:00
parent 33433ea9de
commit a2d621560a
37 changed files with 600 additions and 168 deletions

View File

@@ -1,9 +1,15 @@
#pragma once
#include "Object.h"
#include "reboot.h"
#include "Map.h"
struct FTableRowBase
{
unsigned char UnknownData00[0x8]; // this is actually structural padding
};
class UDataTable : public UObject
{
public:
@@ -17,7 +23,7 @@ public:
static UClass* StaticClass()
{
static auto Class = FindObject<UClass>("/Script/Engine.DataTable");
static auto Class = FindObject<UClass>(L"/Script/Engine.DataTable");
return Class;
}
};