Exemplo n.º 1
0
 public bool IsPressed(string button)
 {
     return((Source?.IsPressed(button) ?? false)
            | (SourceOr?.IsPressed(button) ?? false));
 }
Exemplo n.º 2
0
 public bool IsPressed(string button)
 {
     return((Source != null ? Source.IsPressed(button) : false)
            | (SourceOr != null ? SourceOr.IsPressed(button) : false));
 }