ryujinx_ryubing/src/Ryujinx.HLE/HOS/Tamper/Operations/IOperationFactory.cs
2025-12-30 18:52:41 -06:00

10 lines
268 B
C#

using System;
using System.Numerics;
namespace Ryujinx.HLE.HOS.Tamper.Operations
{
interface IOperationFactory
{
static abstract IOperation CreateFor<T>(IOperand destination, IOperand lhs, IOperand rhs) where T : unmanaged, IBinaryInteger<T>;
}
}