1
0
Fork 0
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:
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_Bombf
z_en_bombf.c

View file

@ -0,0 +1,46 @@
#include "z_en_bombf.h"
#define ROOM 0x00
#define FLAGS 0x00000011
void EnBombf_Init(EnBombf* this, GlobalContext* globalCtx);
void EnBombf_Destroy(EnBombf* this, GlobalContext* globalCtx);
void EnBombf_Update(EnBombf* this, GlobalContext* globalCtx);
void EnBombf_Draw(EnBombf* this, GlobalContext* globalCtx);
/*
const ActorInit En_Bombf_InitVars =
{
ACTOR_EN_BOMBF,
ACTORTYPE_PROP,
ROOM,
FLAGS,
OBJECT_BOMBF,
sizeof(EnBombf),
(ActorFunc)EnBombf_Init,
(ActorFunc)EnBombf_Destroy,
(ActorFunc)EnBombf_Update,
(ActorFunc)EnBombf_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C6F60.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/EnBombf_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/EnBombf_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C7180.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C71A8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C74AC.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C75C8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C7624.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/EnBombf_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/func_809C7F24.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Bombf/EnBombf_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_EN_BOMBF_H_
#define _Z_EN_BOMBF_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0xC4];
} EnBombf; // size = 0x0210
extern const ActorInit En_Bombf_InitVars;
#endif