using System.Collections.Generic; using System.Linq; namespace Domain.Input { public class SsReader : InputReader { public SsReader(KeyHistory history) : base(history, new List { VKeyCode.S, VKeyCode.S }) { } } }