1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-05 10:33:36 +00:00
ooot/include/state.h

12 lines
126 B
C
Raw Normal View History

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