1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/def/z_scene.h
2022-04-13 17:00:45 -04:00

19 lines
669 B
C

#pragma once
#include "globalctx.h"
struct ObjectContext;
struct TransitionActorContext;
struct RomFile;
extern s16 gLinkObjectIds[2];
extern RomFile gObjectTable[OBJECT_ID_MAX];
extern u32 gObjectTableSize;
s32 Object_GetIndex(ObjectContext* objectCtx, s32 objectId);
void Object_InitBank(GlobalContext* globalCtx, ObjectContext* objectCtx);
s32 Object_IsLoaded(ObjectContext* objectCtx, s32 bankIndex);
void Object_UpdateBank(ObjectContext* objectCtx);
s32 Scene_ExecuteCommands(GlobalContext* globalCtx, SceneCmd* sceneCmd);
void TransitionActor_InitContext(GameState* state, TransitionActorContext* transiActorCtx);
void func_800981B8(ObjectContext* objectCtx);