1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-10 17:00:19 +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_Dha
z_en_dha.c

View file

@ -0,0 +1,52 @@
#include "z_en_dha.h"
#define ROOM 0x00
#define FLAGS 0x00000015
void EnDha_Init(EnDha* this, GlobalContext* globalCtx);
void EnDha_Destroy(EnDha* this, GlobalContext* globalCtx);
void EnDha_Update(EnDha* this, GlobalContext* globalCtx);
void EnDha_Draw(EnDha* this, GlobalContext* globalCtx);
/*
const ActorInit En_Dha_InitVars =
{
ACTOR_EN_DHA,
ACTORTYPE_ENEMY,
ROOM,
FLAGS,
OBJECT_DH,
sizeof(EnDha),
(ActorFunc)EnDha_Init,
(ActorFunc)EnDha_Destroy,
(ActorFunc)EnDha_Update,
(ActorFunc)EnDha_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809EC880.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/EnDha_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/EnDha_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809EC9C8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ECA50.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ECF60.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ECF8C.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ED054.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ED0C4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ED27C.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/EnDha_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ED414.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/func_809ED4B8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Dha/EnDha_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_EN_DHA_H_
#define _Z_EN_DHA_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x214];
} EnDha; // size = 0x0360
extern const ActorInit En_Dha_InitVars;
#endif