citra/src/scripted_input/scripted_input.h
2017-08-13 16:24:33 +12:00

26 lines
484 B
C++

// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string>
namespace ScriptedInput {
/// Initializes and registers the input device factories.
void Init();
void LoadScript(std::string script_name);
/// Deregisters the input device factories and shuts them down.
void Shutdown();
class ScriptedButtons;
bool IsInUse();
void NotifyFrameFinished();
} // namespace InputCommon