mirror of
https://github.com/KeatonTheBot/Ryujinx.git
synced 2026-04-29 00:12:58 +00:00
12 lines
188 B
C#
12 lines
188 B
C#
namespace Ryujinx.Common.Memory
|
|
{
|
|
public class Box<T> where T : unmanaged
|
|
{
|
|
public T Data;
|
|
|
|
public Box()
|
|
{
|
|
Data = new T();
|
|
}
|
|
}
|
|
}
|