mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
16 lines
255 B
C++
16 lines
255 B
C++
#pragma once
|
|
#include "pch.h"
|
|
|
|
enum class TapeRecorderAction
|
|
{
|
|
Play,
|
|
StartRecord,
|
|
StopRecord
|
|
};
|
|
|
|
class ITapeRecorder
|
|
{
|
|
public:
|
|
virtual void ProcessTapeRecorderAction(TapeRecorderAction action, string filename) = 0;
|
|
virtual bool IsRecording() = 0;
|
|
};
|