mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-28 11:23:50 +00:00
29 lines
634 B
C
29 lines
634 B
C
#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
|