mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-06 06:10:21 +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_Tg/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Tg/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Tg
|
||||
z_en_tg.c
|
44
src/overlays/actors/ovl_En_Tg/z_en_tg.c
Normal file
44
src/overlays/actors/ovl_En_Tg/z_en_tg.c
Normal file
|
@ -0,0 +1,44 @@
|
|||
#include "z_en_tg.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000009
|
||||
|
||||
void EnTg_Init(EnTg* this, GlobalContext* globalCtx);
|
||||
void EnTg_Destroy(EnTg* this, GlobalContext* globalCtx);
|
||||
void EnTg_Update(EnTg* this, GlobalContext* globalCtx);
|
||||
void EnTg_Draw(EnTg* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Tg_InitVars =
|
||||
{
|
||||
ACTOR_EN_TG,
|
||||
ACTORTYPE_NPC,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_MU,
|
||||
sizeof(EnTg),
|
||||
(ActorFunc)EnTg_Init,
|
||||
(ActorFunc)EnTg_Destroy,
|
||||
(ActorFunc)EnTg_Update,
|
||||
(ActorFunc)EnTg_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/func_80B18360.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/func_80B183F8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/EnTg_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/EnTg_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/func_80B185C0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/EnTg_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/func_80B18704.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/func_80B1871C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/func_80B18778.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Tg/EnTg_Draw.s")
|
15
src/overlays/actors/ovl_En_Tg/z_en_tg.h
Normal file
15
src/overlays/actors/ovl_En_Tg/z_en_tg.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_TG_H_
|
||||
#define _Z_EN_TG_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0xC0];
|
||||
} EnTg; // size = 0x020C
|
||||
|
||||
extern const ActorInit En_Tg_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue