mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
14 lines
215 B
C
14 lines
215 B
C
#ifndef _STRUCTS_BITFIELDS_H_
|
|
#define _STRUCTS_BITFIELDS_H_
|
|
|
|
#include <PR/ultratypes.h>
|
|
|
|
typedef struct {
|
|
u32 cont : 1;
|
|
u32 type : 4;
|
|
u32 offset : 11;
|
|
s32 value : 16;
|
|
} z_ActorCompInitEntry;
|
|
|
|
#endif
|