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_fHG/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_fHG/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_fHG
|
||||
z_en_fhg.c
|
50
src/overlays/actors/ovl_En_fHG/z_en_fhg.c
Normal file
50
src/overlays/actors/ovl_En_fHG/z_en_fhg.c
Normal file
|
@ -0,0 +1,50 @@
|
|||
#include "z_en_fhg.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000010
|
||||
|
||||
void EnfHG_Init(EnfHG* this, GlobalContext* globalCtx);
|
||||
void EnfHG_Destroy(EnfHG* this, GlobalContext* globalCtx);
|
||||
void EnfHG_Update(EnfHG* this, GlobalContext* globalCtx);
|
||||
void EnfHG_Draw(EnfHG* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_fHG_InitVars =
|
||||
{
|
||||
ACTOR_EN_FHG,
|
||||
ACTORTYPE_BG,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_FHG,
|
||||
sizeof(EnfHG),
|
||||
(ActorFunc)EnfHG_Init,
|
||||
(ActorFunc)EnfHG_Destroy,
|
||||
(ActorFunc)EnfHG_Update,
|
||||
(ActorFunc)EnfHG_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/EnfHG_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/EnfHG_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B62B04.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B62B6C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B63D84.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B6404C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B6424C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B6476C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B64AA8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B64CF4.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/EnfHG_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/func_80B64E94.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_fHG/EnfHG_Draw.s")
|
15
src/overlays/actors/ovl_En_fHG/z_en_fhg.h
Normal file
15
src/overlays/actors/ovl_En_fHG/z_en_fhg.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_FHG_H_
|
||||
#define _Z_EN_FHG_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x148];
|
||||
} EnfHG; // size = 0x0294
|
||||
|
||||
extern const ActorInit En_Fhg_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue