mirror of
https://github.com/SourMesen/Mesen.git
synced 2025-04-02 10:52:48 -04:00
11 lines
249 B
C#
11 lines
249 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
public interface IByteColorProvider
|
|
{
|
|
void Prepare(long firstByteIndex, long lastByteIndex);
|
|
Color GetByteColor(long firstByteIndex, long byteIndex, out Color bgColor);
|
|
}
|
|
}
|