mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-08 15:30:14 +00:00
First proper commit.
This commit is contained in:
parent
be78236d36
commit
087f561f77
14086 changed files with 1200489 additions and 1 deletions
2
src/overlays/actors/ovl_En_Mm/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Mm/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Mm
|
||||
z_en_mm.c
|
60
src/overlays/actors/ovl_En_Mm/z_en_mm.c
Normal file
60
src/overlays/actors/ovl_En_Mm/z_en_mm.c
Normal file
|
@ -0,0 +1,60 @@
|
|||
#include "z_en_mm.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000019
|
||||
|
||||
void EnMm_Init(EnMm* this, GlobalContext* globalCtx);
|
||||
void EnMm_Destroy(EnMm* this, GlobalContext* globalCtx);
|
||||
void EnMm_Update(EnMm* this, GlobalContext* globalCtx);
|
||||
void EnMm_Draw(EnMm* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Mm_InitVars =
|
||||
{
|
||||
ACTOR_EN_MM,
|
||||
ACTORTYPE_NPC,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_MM,
|
||||
sizeof(EnMm),
|
||||
(ActorFunc)EnMm_Init,
|
||||
(ActorFunc)EnMm_Destroy,
|
||||
(ActorFunc)EnMm_Update,
|
||||
(ActorFunc)EnMm_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAD770.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/EnMm_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/EnMm_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADA70.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADAA0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADC34.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADCD0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADE50.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADE60.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AADEF0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAE224.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAE294.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAE50C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAE598.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/EnMm_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/EnMm_Draw.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAE97C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm/func_80AAEA10.s")
|
15
src/overlays/actors/ovl_En_Mm/z_en_mm.h
Normal file
15
src/overlays/actors/ovl_En_Mm/z_en_mm.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_MM_H_
|
||||
#define _Z_EN_MM_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x1D4];
|
||||
} EnMm; // size = 0x0320
|
||||
|
||||
extern const ActorInit En_Mm_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue