feat: other accents
This commit is contained in:
parent
c1a8b06f43
commit
c475204437
5 changed files with 25 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Domain.Input;
|
using Domain.Input;
|
||||||
|
|
||||||
|
@ -21,6 +20,8 @@ namespace Domain {
|
||||||
_readers.Add(new LlReader(_history));
|
_readers.Add(new LlReader(_history));
|
||||||
_readers.Add(new SsReader(_history));
|
_readers.Add(new SsReader(_history));
|
||||||
_readers.Add(new AObertaReader(_history));
|
_readers.Add(new AObertaReader(_history));
|
||||||
|
_readers.Add(new EObertaReader(_history));
|
||||||
|
_readers.Add(new OObertaReader(_history));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateInput() {
|
public void UpdateInput() {
|
||||||
|
|
8
Assets/Scripts/Domain/Input/EObertaReader.cs
Normal file
8
Assets/Scripts/Domain/Input/EObertaReader.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace Domain.Input {
|
||||||
|
public class EObertaReader : SequentialInputReader {
|
||||||
|
public EObertaReader(KeyHistory history) : base(history, new List<int>{ 0xBA, 0x45 }) { }
|
||||||
|
}
|
||||||
|
}
|
3
Assets/Scripts/Domain/Input/EObertaReader.cs.meta
Normal file
3
Assets/Scripts/Domain/Input/EObertaReader.cs.meta
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a3bca68b3d5a469e8c330a55588b872b
|
||||||
|
timeCreated: 1713278867
|
8
Assets/Scripts/Domain/Input/OObertaReader.cs
Normal file
8
Assets/Scripts/Domain/Input/OObertaReader.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace Domain.Input {
|
||||||
|
public class OObertaReader : SequentialInputReader {
|
||||||
|
public OObertaReader(KeyHistory history) : base(history, new List<int>{ 0xBA, 0x4F }) { }
|
||||||
|
}
|
||||||
|
}
|
3
Assets/Scripts/Domain/Input/OObertaReader.cs.meta
Normal file
3
Assets/Scripts/Domain/Input/OObertaReader.cs.meta
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6c48f7b4484443ff85a813b1e5b6e11b
|
||||||
|
timeCreated: 1713278895
|
Loading…
Add table
Add a link
Reference in a new issue