feat: u dieresi
This commit is contained in:
parent
9d5f64fd19
commit
2a82f7273a
4 changed files with 10 additions and 9 deletions
|
@ -17,7 +17,7 @@ namespace Domain {
|
|||
_readers.Add(new NyReader(_history));
|
||||
_readers.Add(new TgReader(_history));
|
||||
_readers.Add(new TjReader(_history));
|
||||
_readers.Add(new LlReader(_history));
|
||||
_readers.Add(new UDieresiReader(_history));
|
||||
_readers.Add(new SsReader(_history));
|
||||
_readers.Add(new AObertaReader(_history));
|
||||
_readers.Add(new EObertaReader(_history));
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Domain.Input {
|
||||
public class LlReader : InputReader {
|
||||
public LlReader(KeyHistory history) : base(history, new List<int> { VKeyCode.L, VKeyCode.L }) { }
|
||||
}
|
||||
}
|
9
Assets/Scripts/Domain/Input/UDieresiReader.cs
Normal file
9
Assets/Scripts/Domain/Input/UDieresiReader.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Domain.Input {
|
||||
public class UDieresiReader : InputReader {
|
||||
public UDieresiReader(KeyHistory history) : base(history, new List<int> { VKeyCode.AccentClosed, VKeyCode.U },
|
||||
VKeyCode.Shift, true) { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue