mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-09 02:26:21 +00:00
9 lines
128 B
C
9 lines
128 B
C
![]() |
#pragma once
|
||
|
|
||
|
class BaseControlDevice;
|
||
|
|
||
|
class IInputProvider
|
||
|
{
|
||
|
public:
|
||
|
virtual bool SetInput(BaseControlDevice* device) = 0;
|
||
|
};
|