1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-07 06:40:15 +00:00

First proper commit.

This commit is contained in:
Jack Walker 2020-03-17 00:31:30 -04:00
parent be78236d36
commit 087f561f77
14086 changed files with 1200489 additions and 1 deletions

View file

@ -0,0 +1,2 @@
ovl_En_Mu
z_en_mu.c

View file

@ -0,0 +1,48 @@
#include "z_en_mu.h"
#define ROOM 0x00
#define FLAGS 0x00000009
void EnMu_Init(EnMu* this, GlobalContext* globalCtx);
void EnMu_Destroy(EnMu* this, GlobalContext* globalCtx);
void EnMu_Update(EnMu* this, GlobalContext* globalCtx);
void EnMu_Draw(EnMu* this, GlobalContext* globalCtx);
/*
const ActorInit En_Mu_InitVars =
{
ACTOR_EN_MU,
ACTORTYPE_NPC,
ROOM,
FLAGS,
OBJECT_MU,
sizeof(EnMu),
(ActorFunc)EnMu_Init,
(ActorFunc)EnMu_Destroy,
(ActorFunc)EnMu_Update,
(ActorFunc)EnMu_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB0420.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB0428.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB0584.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB05C4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/EnMu_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/EnMu_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB0724.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/EnMu_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB08A4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB0994.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/func_80AB09A8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mu/EnMu_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_EN_MU_H_
#define _Z_EN_MU_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x100];
} EnMu; // size = 0x024C
extern const ActorInit En_Mu_InitVars;
#endif