mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-24 16:32:24 -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();
|
|
}
|
|
}
|
|
}
|