1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-07 14:50: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_Hsblock
z_obj_hsblock.c

View file

@ -0,0 +1,48 @@
#include "z_obj_hsblock.h"
#define ROOM 0x00
#define FLAGS 0x00000000
void ObjHsblock_Init(ObjHsblock* this, GlobalContext* globalCtx);
void ObjHsblock_Destroy(ObjHsblock* this, GlobalContext* globalCtx);
void ObjHsblock_Update(ObjHsblock* this, GlobalContext* globalCtx);
void ObjHsblock_Draw(ObjHsblock* this, GlobalContext* globalCtx);
/*
const ActorInit Obj_Hsblock_InitVars =
{
ACTOR_OBJ_HSBLOCK,
ACTORTYPE_BG,
ROOM,
FLAGS,
OBJECT_D_HSBLOCK,
sizeof(ObjHsblock),
(ActorFunc)ObjHsblock_Init,
(ActorFunc)ObjHsblock_Destroy,
(ActorFunc)ObjHsblock_Update,
(ActorFunc)ObjHsblock_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93B60.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93B68.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93BF0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/ObjHsblock_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/ObjHsblock_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93D90.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93DB0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93DF4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93E38.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/func_80B93E5C.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/ObjHsblock_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Hsblock/ObjHsblock_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_OBJ_HSBLOCK_H_
#define _Z_OBJ_HSBLOCK_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x1C];
} ObjHsblock; // size = 0x0168
extern const ActorInit Obj_Hsblock_InitVars;
#endif