mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
22 lines
403 B
C
22 lines
403 B
C
// this file wasn't fun
|
|
|
|
#pragma once
|
|
|
|
#include "reboot.h"
|
|
|
|
struct FUniqueNetIdRepl // : public FUniqueNetIdWrapper
|
|
{
|
|
static UStruct* GetStruct()
|
|
{
|
|
static auto Struct = FindObject<UStruct>("/Script/Engine.UniqueNetIdRepl");
|
|
return Struct;
|
|
}
|
|
|
|
static int GetSizeOfStruct()
|
|
{
|
|
static auto Size = GetStruct()->GetPropertiesSize();
|
|
return Size;
|
|
}
|
|
|
|
/* bool IsEqual(FUniqueNetIdRepl* Other) */
|
|
}; |