1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-02 09:03:36 +00:00
ooot/include/state.h

12 lines
126 B
C++

#pragma once
namespace oot
{
struct State
{
u8 fastForward = 1;
bool center_camera = false;
};
extern State state;
}