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:
parent
be78236d36
commit
087f561f77
14086 changed files with 1200489 additions and 1 deletions
2
src/overlays/actors/ovl_En_Kanban/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Kanban/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Kanban
|
||||
z_en_kanban.c
|
36
src/overlays/actors/ovl_En_Kanban/z_en_kanban.c
Normal file
36
src/overlays/actors/ovl_En_Kanban/z_en_kanban.c
Normal file
|
@ -0,0 +1,36 @@
|
|||
#include "z_en_kanban.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000019
|
||||
|
||||
void EnKanban_Init(EnKanban* this, GlobalContext* globalCtx);
|
||||
void EnKanban_Destroy(EnKanban* this, GlobalContext* globalCtx);
|
||||
void EnKanban_Update(EnKanban* this, GlobalContext* globalCtx);
|
||||
void EnKanban_Draw(EnKanban* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Kanban_InitVars =
|
||||
{
|
||||
ACTOR_EN_KANBAN,
|
||||
ACTORTYPE_PROP,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_KANBAN,
|
||||
sizeof(EnKanban),
|
||||
(ActorFunc)EnKanban_Init,
|
||||
(ActorFunc)EnKanban_Destroy,
|
||||
(ActorFunc)EnKanban_Update,
|
||||
(ActorFunc)EnKanban_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Kanban/func_80A91FA0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Kanban/EnKanban_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Kanban/EnKanban_Destroy.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Kanban/func_80A921C0.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Kanban/EnKanban_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Kanban/EnKanban_Draw.s")
|
15
src/overlays/actors/ovl_En_Kanban/z_en_kanban.h
Normal file
15
src/overlays/actors/ovl_En_Kanban/z_en_kanban.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_KANBAN_H_
|
||||
#define _Z_EN_KANBAN_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0xA0];
|
||||
} EnKanban; // size = 0x01EC
|
||||
|
||||
extern const ActorInit En_Kanban_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue