mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
21 lines
327 B
C
21 lines
327 B
C
|
|
#ifndef GX_STATE_BOM_H
|
||
|
|
#define GX_STATE_BOM_H
|
||
|
|
|
||
|
|
#include <stdint.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
|