mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
12 lines
361 B
C#
12 lines
361 B
C#
using Mesen.Interop;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class TileEditorConfig : BaseWindowConfig<TileEditorConfig>
|
|
{
|
|
[Reactive] public double ImageScale { get; set; } = 8;
|
|
[Reactive] public bool ShowGrid { get; set; } = false;
|
|
[Reactive] public TileBackground Background { get; set; } = TileBackground.Transparent;
|
|
}
|
|
}
|