1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-08 07:20:16 +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_Efc_Erupc
z_efc_erupc.c

View file

@ -0,0 +1,44 @@
#include "z_efc_erupc.h"
#define ROOM 0x00
#define FLAGS 0x00000030
void EfcErupc_Init(EfcErupc* this, GlobalContext* globalCtx);
void EfcErupc_Destroy(EfcErupc* this, GlobalContext* globalCtx);
void EfcErupc_Update(EfcErupc* this, GlobalContext* globalCtx);
void EfcErupc_Draw(EfcErupc* this, GlobalContext* globalCtx);
/*
const ActorInit Efc_Erupc_InitVars =
{
ACTOR_EFC_ERUPC,
ACTORTYPE_ITEMACTION,
ROOM,
FLAGS,
OBJECT_EFC_ERUPC,
sizeof(EfcErupc),
(ActorFunc)EfcErupc_Init,
(ActorFunc)EfcErupc_Destroy,
(ActorFunc)EfcErupc_Update,
(ActorFunc)EfcErupc_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/func_8099CCB0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/EfcErupc_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/EfcErupc_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/func_8099CD2C.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/EfcErupc_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/EfcErupc_Draw.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/func_8099D334.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/func_8099D52C.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/func_8099D650.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Efc_Erupc/func_8099D71C.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_EFC_ERUPC_H_
#define _Z_EFC_ERUPC_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x1780];
} EfcErupc; // size = 0x18CC
extern const ActorInit Efc_Erupc_InitVars;
#endif