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_Oceff_Wipe
z_oceff_wipe.c

View file

@ -0,0 +1,32 @@
#include "z_oceff_wipe.h"
#define ROOM 0x00
#define FLAGS 0x02000010
void OceffWipe_Init(OceffWipe* this, GlobalContext* globalCtx);
void OceffWipe_Destroy(OceffWipe* this, GlobalContext* globalCtx);
void OceffWipe_Update(OceffWipe* this, GlobalContext* globalCtx);
void OceffWipe_Draw(OceffWipe* this, GlobalContext* globalCtx);
/*
const ActorInit Oceff_Wipe_InitVars =
{
ACTOR_OCEFF_WIPE,
ACTORTYPE_ITEMACTION,
ROOM,
FLAGS,
OBJECT_GAMEPLAY_KEEP,
sizeof(OceffWipe),
(ActorFunc)OceffWipe_Init,
(ActorFunc)OceffWipe_Destroy,
(ActorFunc)OceffWipe_Update,
(ActorFunc)OceffWipe_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe/OceffWipe_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe/OceffWipe_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe/OceffWipe_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe/OceffWipe_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_OCEFF_WIPE_H_
#define _Z_OCEFF_WIPE_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x4];
} OceffWipe; // size = 0x0150
extern const ActorInit Oceff_Wipe_InitVars;
#endif