feat(profile): refactor lua, bc code

This commit is contained in:
phaneron 2026-04-01 17:37:40 -04:00
parent e79ee08905
commit 37db5336e4
40 changed files with 3424 additions and 0 deletions

View file

@ -0,0 +1,29 @@
#ifndef MAP_CHUNK_GEOM_FACTORY_H
#define MAP_CHUNK_GEOM_FACTORY_H
DECLARE_STRUCT(CChunkGeomFactory);
#include "map/chunkliquid.h"
#include "map/mapchunkbuf.h"
#include "tempest/matrix.h"
struct CChunkGeomFactory {
void** vtable;
uint32_t unk_04;
uint32_t unk_08;
uint32_t unk_0C;
uint32_t unk_10;
CChunkLiquid* liquidChunk;
uint32_t unk_18;
CMapChunkBuf* mapChunkBuf;
uint32_t unk_20;
uint32_t unk_24;
uint32_t unk_28;
uint16_t unk_flags_2C;
uint16_t unk_flags_2E;
uint32_t unk_30;
C44Matrix matrix;
};
#endif