mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-25 11:01:14 +00:00
9 lines
122 B
C++
9 lines
122 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class IVideoDevice
|
|
{
|
|
public:
|
|
virtual void UpdateFrame(uint8_t *outputBuffer) = 0;
|
|
}; |