mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-02 11:25:46 +00:00
13 lines
191 B
C#
13 lines
191 B
C#
namespace Ryujinx.HLE.HOS.Tamper
|
|
{
|
|
class Parameter<T>
|
|
{
|
|
public T Value { get; set; }
|
|
|
|
public Parameter(T value)
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|