1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-20 22:11: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_Kibako2
z_obj_kibako2.c

View file

@ -0,0 +1,42 @@
#include "z_obj_kibako2.h"
#define ROOM 0x00
#define FLAGS 0x00000000
void ObjKibako2_Init(ObjKibako2* this, GlobalContext* globalCtx);
void ObjKibako2_Destroy(ObjKibako2* this, GlobalContext* globalCtx);
void ObjKibako2_Update(ObjKibako2* this, GlobalContext* globalCtx);
void ObjKibako2_Draw(ObjKibako2* this, GlobalContext* globalCtx);
/*
const ActorInit Obj_Kibako2_InitVars =
{
ACTOR_OBJ_KIBAKO2,
ACTORTYPE_BG,
ROOM,
FLAGS,
OBJECT_KIBAKO2,
sizeof(ObjKibako2),
(ActorFunc)ObjKibako2_Init,
(ActorFunc)ObjKibako2_Destroy,
(ActorFunc)ObjKibako2_Update,
(ActorFunc)ObjKibako2_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/func_80B959D0.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/func_80B95A28.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/func_80B95CA4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/ObjKibako2_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/ObjKibako2_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/func_80B95DFC.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/func_80B95ED4.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/ObjKibako2_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Obj_Kibako2/ObjKibako2_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_OBJ_KIBAKO2_H_
#define _Z_OBJ_KIBAKO2_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x6C];
} ObjKibako2; // size = 0x01B8
extern const ActorInit Obj_Kibako2_InitVars;
#endif