Roses/Assets/Scripts/Domain/Input/UDieresiReader.cs
2024-04-18 17:02:24 +02:00

9 lines
No EOL
273 B
C#

using System.Collections.Generic;
using System.Linq;
namespace Domain.Input {
public class UDieresiReader : InputReader {
public UDieresiReader(KeyHistory history) : base(history, new List<int> { VKeyCode.AccentClosed, VKeyCode.U },
VKeyCode.Shift, true) { }
}
}