mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-13 02:02:30 +00:00
feat(profile): CChunkGeomBuffer and CMapChunkBuf structs
This commit is contained in:
parent
40f4c25346
commit
c83a929f50
3 changed files with 58 additions and 0 deletions
25
profile/3.3.5a-windows-386/include/map/CMapChunkBuf.h
Normal file
25
profile/3.3.5a-windows-386/include/map/CMapChunkBuf.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef CMAPCHUNKBUF_H
|
||||
#define CMAPCHUNKBUF_H
|
||||
|
||||
DECLARE_STRUCT(CMapChunkBuf);
|
||||
|
||||
#include "system/types.h"
|
||||
#include "gx/buffer.h"
|
||||
|
||||
struct CMapChunkBuf
|
||||
{
|
||||
uint32_t unk_00;
|
||||
float flushTimer;
|
||||
|
||||
uint32_t vertexDataSize;
|
||||
uint32_t indexDataSize;
|
||||
|
||||
CGxBuf* vertexBuf;
|
||||
CGxBuf* indexBuf;
|
||||
CGxPool* vertexPool;
|
||||
CGxPool* indexPool;
|
||||
uint32_t unk_20;
|
||||
uint32_t unk_24;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue