aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Memory/Box.cs
blob: e7dd76a65a9b54a857db1310e84442226be92120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Common.Memory
{
    public class Box<T> where T : unmanaged
    {
        public T Data;

        public Box()
        {
            Data = new T();
        }
    }
}