mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
18 lines
254 B
C++
18 lines
254 B
C++
#pragma once
|
|
|
|
#include "HostKeyID.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostInputDriver
|
|
{
|
|
public:
|
|
|
|
static HostInputDriver *GetInstance();
|
|
static void SetInstance(HostInputDriver *instance);
|
|
|
|
private:
|
|
static HostInputDriver *ms_instance;
|
|
};
|
|
}
|