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

18 lines
267 B
C++

#pragma once
struct GraphicsContext;
namespace oot::gamestate
{
class Base;
class Global;
}
typedef oot::gamestate::Global GlobalContext;
typedef oot::gamestate::Base GameState;
namespace oot::gamestate::factory
{
GameState* Global(GraphicsContext* gfxCtx);
}