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_Bg_Haka/overlay.cfg
Normal file
2
src/overlays/actors/ovl_Bg_Haka/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_Bg_Haka
|
||||
z_bg_haka.c
|
42
src/overlays/actors/ovl_Bg_Haka/z_bg_haka.c
Normal file
42
src/overlays/actors/ovl_Bg_Haka/z_bg_haka.c
Normal file
|
@ -0,0 +1,42 @@
|
|||
#include "z_bg_haka.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000000
|
||||
|
||||
void BgHaka_Init(BgHaka* this, GlobalContext* globalCtx);
|
||||
void BgHaka_Destroy(BgHaka* this, GlobalContext* globalCtx);
|
||||
void BgHaka_Update(BgHaka* this, GlobalContext* globalCtx);
|
||||
void BgHaka_Draw(BgHaka* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit Bg_Haka_InitVars =
|
||||
{
|
||||
ACTOR_BG_HAKA,
|
||||
ACTORTYPE_BG,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_HAKA,
|
||||
sizeof(BgHaka),
|
||||
(ActorFunc)BgHaka_Init,
|
||||
(ActorFunc)BgHaka_Destroy,
|
||||
(ActorFunc)BgHaka_Update,
|
||||
(ActorFunc)BgHaka_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/BgHaka_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/BgHaka_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/func_8087B758.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/func_8087B7E8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/func_8087B938.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/func_8087BAAC.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/func_8087BAE4.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/BgHaka_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Bg_Haka/BgHaka_Draw.s")
|
15
src/overlays/actors/ovl_Bg_Haka/z_bg_haka.h
Normal file
15
src/overlays/actors/ovl_Bg_Haka/z_bg_haka.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_BG_HAKA_H_
|
||||
#define _Z_BG_HAKA_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x1C];
|
||||
} BgHaka; // size = 0x0168
|
||||
|
||||
extern const ActorInit Bg_Haka_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue