mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-02 03:52:23 -05: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;
|
|
}
|
|
}
|
|
}
|