Move solution and projects to src
This commit is contained in:
12
src/Ryujinx.HLE/HOS/Tamper/Parameter.cs
Normal file
12
src/Ryujinx.HLE/HOS/Tamper/Parameter.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.HLE.HOS.Tamper
|
||||
{
|
||||
class Parameter<T>
|
||||
{
|
||||
public T Value { get; set; }
|
||||
|
||||
public Parameter(T value)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user