Shipwright/soh/src/overlays/actors/ovl_Elf_Msg/z_elf_msg.h

17 lines
301 B
C

#ifndef Z_ELF_MSG_H
#define Z_ELF_MSG_H
#include "ultra64.h"
#include "global.h"
struct ElfMsg;
typedef void (*ElfMsgActionFunc)(struct ElfMsg*, GlobalContext*);
typedef struct ElfMsg {
/* 0x0000 */ Actor actor;
/* 0x014C */ ElfMsgActionFunc actionFunc;
} ElfMsg; // size = 0x0150
#endif