Files
MP1R-Rando-CodeEdits/libs/game/NScriptLoader/SComplexPropertyLoadEntry.h
2024-07-04 15:22:25 -07:00

12 lines
270 B
C++

#pragma once
#include "types.h"
#include "Stream/CInputStream.h"
namespace NScriptLoader {
struct SComplexPropertyLoadEntry {
uint mTypedefHash;
void* (*constructFunc)(void *allocator);
ulong (*allocSizeFunc)(CInputStream& stream);
};
}