mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 04:48:42 +00:00
10 lines
171 B
C++
10 lines
171 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
|
|
class BaseControlDevice;
|
|
|
|
class IInputRecorder
|
|
{
|
|
public:
|
|
virtual void RecordInput(vector<shared_ptr<BaseControlDevice>> devices) = 0;
|
|
}; |