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

8 lines
No EOL
225 B
C#

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