mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-06 22:30:15 +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_Wood02/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Wood02/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Wood02
|
||||
z_en_wood02.c
|
37
src/overlays/actors/ovl_En_Wood02/z_en_wood02.c
Normal file
37
src/overlays/actors/ovl_En_Wood02/z_en_wood02.c
Normal file
|
@ -0,0 +1,37 @@
|
|||
#include "z_en_wood02.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000000
|
||||
|
||||
void EnWood02_Init(EnWood02* this, GlobalContext* globalCtx);
|
||||
void EnWood02_Destroy(EnWood02* this, GlobalContext* globalCtx);
|
||||
void EnWood02_Update(EnWood02* this, GlobalContext* globalCtx);
|
||||
void EnWood02_Draw(EnWood02* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Wood02_InitVars =
|
||||
{
|
||||
ACTOR_EN_WOOD02,
|
||||
ACTORTYPE_PROP,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_WOOD02,
|
||||
sizeof(EnWood02),
|
||||
(ActorFunc)EnWood02_Init,
|
||||
(ActorFunc)EnWood02_Destroy,
|
||||
(ActorFunc)EnWood02_Update,
|
||||
(ActorFunc)EnWood02_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Wood02/func_80B3AF70.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Wood02/func_80B3B094.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Wood02/EnWood02_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Wood02/EnWood02_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Wood02/EnWood02_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Wood02/EnWood02_Draw.s")
|
||||
|
15
src/overlays/actors/ovl_En_Wood02/z_en_wood02.h
Normal file
15
src/overlays/actors/ovl_En_Wood02/z_en_wood02.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_WOOD02_H_
|
||||
#define _Z_EN_WOOD02_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x58];
|
||||
} EnWood02; // size = 0x01A4
|
||||
|
||||
extern const ActorInit En_Wood02_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue