BizHawk/BizHawk.Emulation/Interfaces/IVideoProvider.cs

12 lines
221 B
C#

namespace BizHawk
{
public interface IVideoProvider
{
int[] GetVideoBuffer();
int BufferWidth { get; }
int BufferHeight { get; }
int BackgroundColor { get; }
}
}