feat(include): add some gx device headers

This commit is contained in:
phaneron 2024-07-08 15:26:09 -04:00
parent 172cf3792d
commit e7bb9a818a
14 changed files with 805 additions and 13 deletions

View file

@ -0,0 +1,21 @@
#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