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