Esempio n. 1
0
 public void Remove(InputEntry <T> entry)
 {
     _commandMapper.Remove(entry);
 }
Esempio n. 2
0
 public IInputCommand this[InputEntry <T> entry]
Esempio n. 3
0
 public void Register(InputEntry <T> entry, IInputCommand command)
 {
     _commandMapper.Map(entry, command);
 }
Esempio n. 4
0
 public bool Equals(InputEntry <T> other)
 {
     return(EqualityComparer <T> .Default.Equals(Key, other.Key) && Func.Equals(other.Func));
 }