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