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_Hs2
z_en_hs2.c

View file

@ -0,0 +1,46 @@
#include "z_en_hs2.h"
#define ROOM 0x00
#define FLAGS 0x00000009
void EnHs2_Init(EnHs2* this, GlobalContext* globalCtx);
void EnHs2_Destroy(EnHs2* this, GlobalContext* globalCtx);
void EnHs2_Update(EnHs2* this, GlobalContext* globalCtx);
void EnHs2_Draw(EnHs2* this, GlobalContext* globalCtx);
/*
const ActorInit En_Hs2_InitVars =
{
ACTOR_EN_HS2,
ACTORTYPE_NPC,
ROOM,
FLAGS,
OBJECT_HS,
sizeof(EnHs2),
(ActorFunc)EnHs2_Init,
(ActorFunc)EnHs2_Destroy,
(ActorFunc)EnHs2_Update,
(ActorFunc)EnHs2_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/EnHs2_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/EnHs2_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F0B4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F164.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F1A4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/EnHs2_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F358.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F390.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F3C8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/func_80A6F3E0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Hs2/EnHs2_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_EN_HS2_H_
#define _Z_EN_HS2_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x164];
} EnHs2; // size = 0x02B0
extern const ActorInit En_Hs2_InitVars;
#endif