mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-19 16:12:18 +00:00
10 lines
268 B
C#
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>;
|
|
}
|
|
}
|