mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 05:52:21 -05: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();
|
|
}
|
|
}
|
|
}
|