mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-20 11:02:05 +00:00
10 lines
147 B
C#
10 lines
147 B
C#
using System;
|
|
using System.Numerics;
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper.Operations
|
|
{
|
|
interface IOperation
|
|
{
|
|
void Execute();
|
|
}
|
|
}
|