mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 21:34:15 +00:00
13 lines
177 B
C
13 lines
177 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
class InputManager
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual void GetKeys(unsigned char *keys16) const = 0;
|
||
|
|
|
||
|
|
static InputManager *GetInstance();
|
||
|
|
};
|
||
|
|
}
|