コード例 #1
0
 public bool IsPressed(string button)
 {
     return((Source?.IsPressed(button) ?? false)
            | (SourceOr?.IsPressed(button) ?? false));
 }
コード例 #2
0
ファイル: BitwiseAdapters.cs プロジェクト: wert23239/BizHawk
 public bool IsPressed(string button)
 {
     return((Source != null ? Source.IsPressed(button) : false)
            | (SourceOr != null ? SourceOr.IsPressed(button) : false));
 }