mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-11 10:54:01 +00:00
9 lines
137 B
C
9 lines
137 B
C
|
#pragma once
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
|
||
|
class IGameBroadcaster
|
||
|
{
|
||
|
public:
|
||
|
virtual void BroadcastInput(uint8_t inputData, uint8_t port) = 0;
|
||
|
};
|