mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
18 lines
534 B
C#
18 lines
534 B
C#
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.Config.Shortcuts
|
|
{
|
|
public class ShortcutKeyInfo : ReactiveObject
|
|
{
|
|
[Reactive] public EmulatorShortcut Shortcut { get; set; }
|
|
[Reactive] public KeyCombination KeyCombination { get; set; } = new KeyCombination();
|
|
[Reactive] public KeyCombination KeyCombination2 { get; set; } = new KeyCombination();
|
|
}
|
|
}
|