You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
29 lines
569 B
Plaintext
29 lines
569 B
Plaintext
#ifndef _CGUIMAP
|
|
#define _CGUIMAP
|
|
|
|
#include "Common.bt"
|
|
#include "CTransform4f.bt"
|
|
#include "CVector3f.bt"
|
|
#include "CCollisionTree.bt"
|
|
|
|
typedef struct {
|
|
typedef struct {
|
|
GUID guid;
|
|
uint nameLen;
|
|
char name[nameLen];
|
|
uint areaIdx;
|
|
uint unk2;
|
|
CTransform4f xf;
|
|
CVector3f offset;
|
|
uint64 collisionDataSize;
|
|
CCollisionTree data(collisionDataSize, kCOL_AABox);
|
|
} SAreaMapData;
|
|
|
|
uint nameLen;
|
|
char name[nameLen];
|
|
uint areaMapDataCount;
|
|
SAreaMapData areaMapData[areaMapDataCount] <optimize = false>;
|
|
} CGuiMap;
|
|
|
|
#endif// _CGUIMAP
|