You've already forked MP1R-Rando-CodeEdits
mirror of
https://github.com/CraftyBoss/MP1R-Rando-CodeEdits.git
synced 2026-04-01 08:50:26 -07:00
12 lines
270 B
C++
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);
|
|
};
|
|
} |