mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-06 06:10:21 +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_Fu/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Fu/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Fu
|
||||
z_en_fu.c
|
55
src/overlays/actors/ovl_En_Fu/z_en_fu.c
Normal file
55
src/overlays/actors/ovl_En_Fu/z_en_fu.c
Normal file
|
@ -0,0 +1,55 @@
|
|||
#include "z_en_fu.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x02000019
|
||||
|
||||
void EnFu_Init(EnFu* this, GlobalContext* globalCtx);
|
||||
void EnFu_Destroy(EnFu* this, GlobalContext* globalCtx);
|
||||
void EnFu_Update(EnFu* this, GlobalContext* globalCtx);
|
||||
void EnFu_Draw(EnFu* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Fu_InitVars =
|
||||
{
|
||||
ACTOR_EN_FU,
|
||||
ACTORTYPE_NPC,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_FU,
|
||||
sizeof(EnFu),
|
||||
(ActorFunc)EnFu_Init,
|
||||
(ActorFunc)EnFu_Destroy,
|
||||
(ActorFunc)EnFu_Update,
|
||||
(ActorFunc)EnFu_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/EnFu_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/EnFu_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1D94C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DA04.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DA9C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DB60.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DBA0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DBD4.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DD44.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DDA8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1DE24.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/EnFu_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1E110.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/func_80A1E26C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Fu/EnFu_Draw.s")
|
||||
|
15
src/overlays/actors/ovl_En_Fu/z_en_fu.h
Normal file
15
src/overlays/actors/ovl_En_Fu/z_en_fu.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_FU_H_
|
||||
#define _Z_EN_FU_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x164];
|
||||
} EnFu; // size = 0x02B0
|
||||
|
||||
extern const ActorInit En_Fu_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue