1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-08 07:20:16 +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_Obj_Dekujr
z_obj_dekujr.c

View file

@ -0,0 +1,38 @@
#include "z_obj_dekujr.h"
#define ROOM 0x00
#define FLAGS 0x00000009
void ObjDekujr_Init(ObjDekujr* this, GlobalContext* globalCtx);
void ObjDekujr_Destroy(ObjDekujr* this, GlobalContext* globalCtx);
void ObjDekujr_Update(ObjDekujr* this, GlobalContext* globalCtx);
void ObjDekujr_Draw(ObjDekujr* this, GlobalContext* globalCtx);
/*
const ActorInit Obj_Dekujr_InitVars =
{
ACTOR_OBJ_DEKUJR,
ACTORTYPE_NPC,
ROOM,
FLAGS,
OBJECT_DEKUJR,
sizeof(ObjDekujr),
(ActorFunc)ObjDekujr_Init,
(ActorFunc)ObjDekujr_Destroy,
(ActorFunc)ObjDekujr_Update,
(ActorFunc)ObjDekujr_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/ObjDekujr_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/ObjDekujr_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/func_80B92538.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/func_80B92578.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/func_80B925B8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/ObjDekujr_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Dekujr/ObjDekujr_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_OBJ_DEKUJR_H_
#define _Z_OBJ_DEKUJR_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x58];
} ObjDekujr; // size = 0x01A4
extern const ActorInit Obj_Dekujr_InitVars;
#endif