OpenLoco/src/OpenLoco/Input/ShortcutManager.h

11 lines
198 B
C++

#include "../Types.hpp"
#include "Shortcut.h"
#include <cstddef>
namespace openloco::input::ShortcutManager
{
size_t count();
void execute(Shortcut s);
string_id getName(Shortcut s);
}