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

22 lines
372 B
C++

#pragma once
#include "gamestate.h"
#include "view.h"
#include "z64game.h"
#include "def/z_opening.h"
namespace oot::gamestate
{
class Opening : public Base
{
public:
Opening(GraphicsContext* gfxCtx);
~Opening();
void init() override;
void main() override;
Base* next() override;
protected:
View view;
}; // size = 0x1D0
} // namespace oot::gamestate