mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
16 lines
379 B
C#
16 lines
379 B
C#
using Avalonia;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class CheatWindowConfig : BaseWindowConfig<CheatWindowConfig>
|
|
{
|
|
public bool DisableAllCheats { get; set; } = false;
|
|
public List<int> ColumnWidths { get; set; } = new();
|
|
}
|
|
}
|