mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-21 06:02:54 +00:00
11 lines
235 B
C#
11 lines
235 B
C#
using System.Numerics;
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper.Operations
|
|
{
|
|
interface IOperand
|
|
{
|
|
public T Get<T>() where T : unmanaged, INumber<T>;
|
|
public void Set<T>(T value) where T : unmanaged, INumber<T>;
|
|
}
|
|
}
|