mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
18 lines
441 B
C#
18 lines
441 B
C#
using Mesen.Interop;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class RefreshTimingConfig : BaseConfig<RefreshTimingConfig>
|
|
{
|
|
[Reactive] public bool RefreshOnBreakPause { get; set; } = true;
|
|
[Reactive] public bool AutoRefresh { get; set; } = true;
|
|
|
|
[Reactive] public int RefreshScanline { get; set; } = 240;
|
|
[Reactive] public int RefreshCycle { get; set; } = 0;
|
|
|
|
public RefreshTimingConfig()
|
|
{
|
|
}
|
|
}
|
|
}
|