Roses/Assets/Scripts/Domain/Input/CedillaReader.cs
2024-04-17 17:21:28 +02:00

7 lines
No EOL
214 B
C#

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