mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-06 14:20:11 +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_Mir_Ray/overlay.cfg
Normal file
2
src/overlays/actors/ovl_Mir_Ray/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_Mir_Ray
|
||||
z_mir_ray.c
|
46
src/overlays/actors/ovl_Mir_Ray/z_mir_ray.c
Normal file
46
src/overlays/actors/ovl_Mir_Ray/z_mir_ray.c
Normal file
|
@ -0,0 +1,46 @@
|
|||
#include "z_mir_ray.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000030
|
||||
|
||||
void MirRay_Init(MirRay* this, GlobalContext* globalCtx);
|
||||
void MirRay_Destroy(MirRay* this, GlobalContext* globalCtx);
|
||||
void MirRay_Update(MirRay* this, GlobalContext* globalCtx);
|
||||
void MirRay_Draw(MirRay* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit Mir_Ray_InitVars =
|
||||
{
|
||||
ACTOR_MIR_RAY,
|
||||
ACTORTYPE_ITEMACTION,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_MIR_RAY,
|
||||
sizeof(MirRay),
|
||||
(ActorFunc)MirRay_Init,
|
||||
(ActorFunc)MirRay_Destroy,
|
||||
(ActorFunc)MirRay_Update,
|
||||
(ActorFunc)MirRay_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8D050.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8D110.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/MirRay_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/MirRay_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/MirRay_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8D6F0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8D8A0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8DA78.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8DB7C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/MirRay_Draw.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Mir_Ray/func_80B8E404.s")
|
15
src/overlays/actors/ovl_Mir_Ray/z_mir_ray.h
Normal file
15
src/overlays/actors/ovl_Mir_Ray/z_mir_ray.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_MIR_RAY_H_
|
||||
#define _Z_MIR_RAY_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x164];
|
||||
} MirRay; // size = 0x02B0
|
||||
|
||||
extern const ActorInit Mir_Ray_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue