IOperation.cs 109 B

1234567
  1. namespace Ryujinx.HLE.HOS.Tamper.Operations
  2. {
  3. interface IOperation
  4. {
  5. void Execute();
  6. }
  7. }