mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-05 13:52:55 +00:00
13 lines
185 B
C#
13 lines
185 B
C#
namespace Ryujinx.Common.Memory
|
|
{
|
|
public class Box<T> where T : unmanaged
|
|
{
|
|
public T Data;
|
|
|
|
public Box()
|
|
{
|
|
Data = new T();
|
|
}
|
|
}
|
|
}
|