mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
12 lines
No EOL
357 B
C#
12 lines
No EOL
357 B
C#
using ReactiveUI.Fody.Helpers;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class ProfilerConfig : BaseWindowConfig<ProfilerConfig>
|
|
{
|
|
[Reactive] public List<int> ColumnWidths { get; set; } = new();
|
|
[Reactive] public bool AutoRefresh { get; set; } = true;
|
|
[Reactive] public bool RefreshOnBreakPause { get; set; } = true;
|
|
}
|
|
} |