mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-27 00:25:38 +00:00
27 lines
321 B
C
27 lines
321 B
C
|
#pragma once
|
||
|
#ifndef ES_CORE_CECINPUT_H
|
||
|
#define ES_CORE_CECINPUT_H
|
||
|
|
||
|
namespace CEC { class ICECAdapter; }
|
||
|
class Window;
|
||
|
|
||
|
class CECInput
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
~CECInput();
|
||
|
|
||
|
static void init();
|
||
|
static void deinit();
|
||
|
|
||
|
private:
|
||
|
|
||
|
CECInput();
|
||
|
static CECInput* sInstance;
|
||
|
|
||
|
CEC::ICECAdapter* mlibCEC;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // ES_CORE_CECINPUT_H
|