mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 05:32:22 -05:00
Move solution and projects to src
This commit is contained in:
12
src/Ryujinx.Common/Memory/Box.cs
Normal file
12
src/Ryujinx.Common/Memory/Box.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.Common.Memory
|
||||
{
|
||||
public class Box<T> where T : unmanaged
|
||||
{
|
||||
public T Data;
|
||||
|
||||
public Box()
|
||||
{
|
||||
Data = new T();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user