mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
18 lines
461 B
C#
18 lines
461 B
C#
using Mesen.Interop;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class PaletteViewerConfig : BaseWindowConfig<PaletteViewerConfig>
|
|
{
|
|
[Reactive] public bool ShowSettingsPanel { get; set; } = true;
|
|
[Reactive] public bool ShowPaletteIndexes { get; set; } = false;
|
|
[Reactive] public int Zoom { get; set; } = 3;
|
|
|
|
[Reactive] public RefreshTimingConfig RefreshTiming { get; set; } = new();
|
|
|
|
public PaletteViewerConfig()
|
|
{
|
|
}
|
|
}
|
|
}
|