ICondition.cs 110 B

1234567
  1. namespace Ryujinx.HLE.HOS.Tamper.Conditions
  2. {
  3. interface ICondition
  4. {
  5. bool Evaluate();
  6. }
  7. }