1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-02 22:14:33 +00:00

First proper commit.

This commit is contained in:
Jack Walker 2020-03-17 00:31:30 -04:00
parent be78236d36
commit 087f561f77
14086 changed files with 1200489 additions and 1 deletions

View file

@ -0,0 +1,2 @@
ovl_En_Nwc
z_en_nwc.c

View file

@ -0,0 +1,46 @@
#include "z_en_nwc.h"
#define ROOM 0x00
#define FLAGS 0x00000030
void EnNwc_Init(EnNwc* this, GlobalContext* globalCtx);
void EnNwc_Destroy(EnNwc* this, GlobalContext* globalCtx);
void EnNwc_Update(EnNwc* this, GlobalContext* globalCtx);
void EnNwc_Draw(EnNwc* this, GlobalContext* globalCtx);
/*
const ActorInit En_Nwc_InitVars =
{
ACTOR_EN_NWC,
ACTORTYPE_PROP,
ROOM,
FLAGS,
OBJECT_NWC,
sizeof(EnNwc),
(ActorFunc)EnNwc_Init,
(ActorFunc)EnNwc_Destroy,
(ActorFunc)EnNwc_Update,
(ActorFunc)EnNwc_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC0E0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC0E8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC0F8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC1F4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC260.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC460.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/EnNwc_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/EnNwc_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/func_80ABC9D0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/EnNwc_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Nwc/EnNwc_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_EN_NWC_H_
#define _Z_EN_NWC_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x5E8];
} EnNwc; // size = 0x0734
extern const ActorInit En_Nwc_InitVars;
#endif