1
0
Fork 0
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:
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_Hamishi
z_obj_hamishi.c

View file

@ -0,0 +1,38 @@
#include "z_obj_hamishi.h"
#define ROOM 0x00
#define FLAGS 0x00000000
void ObjHamishi_Init(ObjHamishi* this, GlobalContext* globalCtx);
void ObjHamishi_Destroy(ObjHamishi* this, GlobalContext* globalCtx);
void ObjHamishi_Update(ObjHamishi* this, GlobalContext* globalCtx);
void ObjHamishi_Draw(ObjHamishi* this, GlobalContext* globalCtx);
/*
const ActorInit Obj_Hamishi_InitVars =
{
ACTOR_OBJ_HAMISHI,
ACTORTYPE_PROP,
ROOM,
FLAGS,
OBJECT_GAMEPLAY_FIELD_KEEP,
sizeof(ObjHamishi),
(ActorFunc)ObjHamishi_Init,
(ActorFunc)ObjHamishi_Destroy,
(ActorFunc)ObjHamishi_Update,
(ActorFunc)ObjHamishi_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/func_80B92F90.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/func_80B92FE8.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/func_80B93164.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/ObjHamishi_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/ObjHamishi_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/ObjHamishi_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hamishi/ObjHamishi_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_OBJ_HAMISHI_H_
#define _Z_OBJ_HAMISHI_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x5C];
} ObjHamishi; // size = 0x01A8
extern const ActorInit Obj_Hamishi_InitVars;
#endif