Roses/Assets/Scripts/Domain/Input/IDieresiReader.cs
2024-04-17 18:01:33 +02:00

9 lines
No EOL
273 B
C#

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