mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
10 lines
208 B
C#
10 lines
208 B
C#
using ReactiveUI.Fody.Helpers;
|
|
using System;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class HistoryViewerConfig : BaseWindowConfig<HistoryViewerConfig>
|
|
{
|
|
[Reactive] public int Volume { get; set; } = 100;
|
|
}
|
|
}
|