mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-08 15:30:14 +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_Siofuki/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Siofuki/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Siofuki
|
||||
z_en_siofuki.c
|
48
src/overlays/actors/ovl_En_Siofuki/z_en_siofuki.c
Normal file
48
src/overlays/actors/ovl_En_Siofuki/z_en_siofuki.c
Normal file
|
@ -0,0 +1,48 @@
|
|||
#include "z_en_siofuki.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000030
|
||||
|
||||
void EnSiofuki_Init(EnSiofuki* this, GlobalContext* globalCtx);
|
||||
void EnSiofuki_Destroy(EnSiofuki* this, GlobalContext* globalCtx);
|
||||
void EnSiofuki_Update(EnSiofuki* this, GlobalContext* globalCtx);
|
||||
void EnSiofuki_Draw(EnSiofuki* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Siofuki_InitVars =
|
||||
{
|
||||
ACTOR_EN_SIOFUKI,
|
||||
ACTORTYPE_BG,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_SIOFUKI,
|
||||
sizeof(EnSiofuki),
|
||||
(ActorFunc)EnSiofuki_Init,
|
||||
(ActorFunc)EnSiofuki_Destroy,
|
||||
(ActorFunc)EnSiofuki_Update,
|
||||
(ActorFunc)EnSiofuki_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/EnSiofuki_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/EnSiofuki_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFBDC8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFBE8C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFC1D0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFC218.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFC34C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFC3C8.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFC478.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/func_80AFC544.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/EnSiofuki_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Siofuki/EnSiofuki_Draw.s")
|
15
src/overlays/actors/ovl_En_Siofuki/z_en_siofuki.h
Normal file
15
src/overlays/actors/ovl_En_Siofuki/z_en_siofuki.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_SIOFUKI_H_
|
||||
#define _Z_EN_SIOFUKI_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x54];
|
||||
} EnSiofuki; // size = 0x01A0
|
||||
|
||||
extern const ActorInit En_Siofuki_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue