Files
Aerofoil/PortabilityLayer/InputManager.h

13 lines
177 B
C
Raw Normal View History

2019-12-21 18:40:17 -05:00
#pragma once
namespace PortabilityLayer
{
class InputManager
{
public:
virtual void GetKeys(unsigned char *keys16) const = 0;
static InputManager *GetInstance();
};
}