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_En_Tana/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Tana/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Tana
|
||||
z_en_tana.c
|
33
src/overlays/actors/ovl_En_Tana/z_en_tana.c
Normal file
33
src/overlays/actors/ovl_En_Tana/z_en_tana.c
Normal file
|
@ -0,0 +1,33 @@
|
|||
#include "z_en_tana.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000009
|
||||
|
||||
void EnTana_Init(EnTana* this, GlobalContext* globalCtx);
|
||||
void EnTana_Destroy(EnTana* this, GlobalContext* globalCtx);
|
||||
void EnTana_Update(EnTana* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Tana_InitVars =
|
||||
{
|
||||
ACTOR_EN_TANA,
|
||||
ACTORTYPE_PROP,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_SHOP_DUNGEN,
|
||||
sizeof(EnTana),
|
||||
(ActorFunc)EnTana_Init,
|
||||
(ActorFunc)EnTana_Destroy,
|
||||
(ActorFunc)EnTana_Update,
|
||||
NULL,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tana/EnTana_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tana/EnTana_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tana/EnTana_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tana/func_80B17FC4.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tana/func_80B1809C.s")
|
14
src/overlays/actors/ovl_En_Tana/z_en_tana.h
Normal file
14
src/overlays/actors/ovl_En_Tana/z_en_tana.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef _Z_EN_TANA_H_
|
||||
#define _Z_EN_TANA_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
} EnTana; // size = 0x014C
|
||||
|
||||
extern const ActorInit En_Tana_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue