mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-09 00:00:44 +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_Arrow_Ice/overlay.cfg
Normal file
2
src/overlays/actors/ovl_Arrow_Ice/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_Arrow_Ice
|
||||
z_arrow_ice.c
|
42
src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.c
Normal file
42
src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.c
Normal file
|
@ -0,0 +1,42 @@
|
|||
#include "z_arrow_ice.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x02000010
|
||||
|
||||
void ArrowIce_Init(ArrowIce* this, GlobalContext* globalCtx);
|
||||
void ArrowIce_Destroy(ArrowIce* this, GlobalContext* globalCtx);
|
||||
void ArrowIce_Update(ArrowIce* this, GlobalContext* globalCtx);
|
||||
void ArrowIce_Draw(ArrowIce* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit Arrow_Ice_InitVars =
|
||||
{
|
||||
ACTOR_ARROW_ICE,
|
||||
ACTORTYPE_ITEMACTION,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_GAMEPLAY_KEEP,
|
||||
sizeof(ArrowIce),
|
||||
(ActorFunc)ArrowIce_Init,
|
||||
(ActorFunc)ArrowIce_Destroy,
|
||||
(ActorFunc)ArrowIce_Update,
|
||||
(ActorFunc)ArrowIce_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/func_80867CD0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/ArrowIce_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/ArrowIce_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/func_80867D98.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/func_80867E8C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/func_80867EDC.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/func_808680A8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/ArrowIce_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Arrow_Ice/ArrowIce_Draw.s")
|
15
src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.h
Normal file
15
src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_ARROW_ICE_H_
|
||||
#define _Z_ARROW_ICE_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x20];
|
||||
} ArrowIce; // size = 0x016C
|
||||
|
||||
extern const ActorInit Arrow_Ice_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue