Mesen-SX/UI/Debugger/HexBox/IByteColorProvider.cs
2019-02-15 21:33:13 -05:00

18 lines
386 B
C#

using System;
using System.Drawing;
namespace Be.Windows.Forms
{
public interface IByteColorProvider
{
void Prepare(long firstByteIndex, long lastByteIndex);
ByteColors GetByteColor(long firstByteIndex, long byteIndex);
}
public class ByteColors
{
public Color ForeColor { get; set; }
public Color BackColor { get; set; }
public Color BorderColor { get; set; }
}
}