mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-02 22:14:33 +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_Encount2/overlay.cfg
Normal file
2
src/overlays/actors/ovl_En_Encount2/overlay.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
ovl_En_Encount2
|
||||
z_en_encount2.c
|
39
src/overlays/actors/ovl_En_Encount2/z_en_encount2.c
Normal file
39
src/overlays/actors/ovl_En_Encount2/z_en_encount2.c
Normal file
|
@ -0,0 +1,39 @@
|
|||
#include "z_en_encount2.h"
|
||||
|
||||
#define ROOM 0x00
|
||||
#define FLAGS 0x00000030
|
||||
|
||||
void EnEncount2_Init(EnEncount2* this, GlobalContext* globalCtx);
|
||||
void EnEncount2_Update(EnEncount2* this, GlobalContext* globalCtx);
|
||||
void EnEncount2_Draw(EnEncount2* this, GlobalContext* globalCtx);
|
||||
|
||||
/*
|
||||
const ActorInit En_Encount2_InitVars =
|
||||
{
|
||||
ACTOR_EN_ENCOUNT2,
|
||||
ACTORTYPE_ENEMY,
|
||||
ROOM,
|
||||
FLAGS,
|
||||
OBJECT_EFC_STAR_FIELD,
|
||||
sizeof(EnEncount2),
|
||||
(ActorFunc)EnEncount2_Init,
|
||||
NULL,
|
||||
(ActorFunc)EnEncount2_Update,
|
||||
(ActorFunc)EnEncount2_Draw,
|
||||
};
|
||||
*/
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/EnEncount2_Init.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/func_80A07A4C.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/func_80A07CA4.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/EnEncount2_Update.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/EnEncount2_Draw.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/func_80A08694.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/func_80A08748.s")
|
||||
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Encount2/func_80A0891C.s")
|
15
src/overlays/actors/ovl_En_Encount2/z_en_encount2.h
Normal file
15
src/overlays/actors/ovl_En_Encount2/z_en_encount2.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _Z_EN_ENCOUNT2_H_
|
||||
#define _Z_EN_ENCOUNT2_H_
|
||||
|
||||
#include <ultra64.h>
|
||||
#include <global.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 0x0000 */ Actor actor;
|
||||
/* 0x014C */ char unk_14C[0x8D4];
|
||||
} EnEncount2; // size = 0x0A20
|
||||
|
||||
extern const ActorInit En_Encount2_InitVars;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue