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