mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-06 22:30:15 +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_Oceff_Wipe3/overlay.cfg
Normal file
2
src/overlays/actors/ovl_Oceff_Wipe3/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_Oceff_Wipe3
|
||||
z_oceff_wipe3.c
|
32
src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.c
Normal file
32
src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.c
Normal file
|
@ -0,0 +1,32 @@
|
|||
#include "z_oceff_wipe3.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x02000010
|
||||
|
||||
void OceffWipe3_Init(OceffWipe3* this, GlobalContext* globalCtx);
|
||||
void OceffWipe3_Destroy(OceffWipe3* this, GlobalContext* globalCtx);
|
||||
void OceffWipe3_Update(OceffWipe3* this, GlobalContext* globalCtx);
|
||||
void OceffWipe3_Draw(OceffWipe3* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit Oceff_Wipe3_InitVars =
|
||||
{
|
||||
ACTOR_OCEFF_WIPE3,
|
||||
ACTORTYPE_ITEMACTION,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_GAMEPLAY_KEEP,
|
||||
sizeof(OceffWipe3),
|
||||
(ActorFunc)OceffWipe3_Init,
|
||||
(ActorFunc)OceffWipe3_Destroy,
|
||||
(ActorFunc)OceffWipe3_Update,
|
||||
(ActorFunc)OceffWipe3_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe3/OceffWipe3_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe3/OceffWipe3_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe3/OceffWipe3_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Oceff_Wipe3/OceffWipe3_Draw.s")
|
15
src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.h
Normal file
15
src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_OCEFF_WIPE3_H_
|
||||
#define _Z_OCEFF_WIPE3_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x4];
|
||||
} OceffWipe3; // size = 0x0150
|
||||
|
||||
extern const ActorInit Oceff_Wipe3_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue