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_Demo_Shd
z_demo_shd.c

View file

@ -0,0 +1,36 @@
#include "z_demo_shd.h"
#define ROOM 0x00
#define FLAGS 0x00000030
void DemoShd_Init(DemoShd* this, GlobalContext* globalCtx);
void DemoShd_Destroy(DemoShd* this, GlobalContext* globalCtx);
void DemoShd_Update(DemoShd* this, GlobalContext* globalCtx);
void DemoShd_Draw(DemoShd* this, GlobalContext* globalCtx);
/*
const ActorInit Demo_Shd_InitVars =
{
ACTOR_DEMO_SHD,
ACTORTYPE_ITEMACTION,
ROOM,
FLAGS,
OBJECT_GAMEPLAY_KEEP,
sizeof(DemoShd),
(ActorFunc)DemoShd_Init,
(ActorFunc)DemoShd_Destroy,
(ActorFunc)DemoShd_Update,
(ActorFunc)DemoShd_Draw,
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Demo_Shd/func_80991230.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Demo_Shd/DemoShd_Init.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Demo_Shd/DemoShd_Destroy.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Demo_Shd/func_80991298.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Demo_Shd/DemoShd_Update.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_Demo_Shd/DemoShd_Draw.s")

View file

@ -0,0 +1,15 @@
#ifndef _Z_DEMO_SHD_H_
#define _Z_DEMO_SHD_H_
#include <ultra64.h>
#include <global.h>
typedef struct
{
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x8];
} DemoShd; // size = 0x0154
extern const ActorInit Demo_Shd_InitVars;
#endif