mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
21 lines
No EOL
313 B
C
21 lines
No EOL
313 B
C
#ifndef GX_STATE_BOM_H
|
|
#define GX_STATE_BOM_H
|
|
|
|
#include "system/types.h"
|
|
#include "storm/array.h"
|
|
|
|
typedef struct CGxStateBom CGxStateBom;
|
|
|
|
struct CGxStateBom {
|
|
union {
|
|
int32_t i[3];
|
|
uint32_t u[3];
|
|
float f[3];
|
|
void* p;
|
|
} m_data;
|
|
|
|
int32_t filler;
|
|
};
|
|
STORM_TS_FIXED_ARRAY(CGxStateBom);
|
|
|
|
#endif |