OpenLoco/src/openloco/Tutorial.h

24 lines
331 B
C++

#pragma once
#include "Types.hpp"
namespace openloco::tutorial
{
enum class tutorial_state
{
none,
playing,
recording,
};
tutorial_state state();
void registerHooks();
void start(int16_t tutorialNumber);
void stop();
uint16_t nextInput();
string_id nextString();
}