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:
parent
be78236d36
commit
087f561f77
14086 changed files with 1200489 additions and 1 deletions
2
src/overlays/actors/ovl_Efc_Erupc/overlay.cfg
Normal file
2
src/overlays/actors/ovl_Efc_Erupc/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_Efc_Erupc
|
||||
z_efc_erupc.c
|
44
src/overlays/actors/ovl_Efc_Erupc/z_efc_erupc.c
Normal file
44
src/overlays/actors/ovl_Efc_Erupc/z_efc_erupc.c
Normal 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")
|
15
src/overlays/actors/ovl_Efc_Erupc/z_efc_erupc.h
Normal file
15
src/overlays/actors/ovl_Efc_Erupc/z_efc_erupc.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue