mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-17 14:57:08 +01:00
23 lines
483 B
C#
23 lines
483 B
C#
using static Ryujinx.OsHle.Objects.ObjHelper;
|
|
|
|
namespace Ryujinx.OsHle.Objects
|
|
{
|
|
class AmIStorage
|
|
{
|
|
public byte[] Data { get; private set; }
|
|
|
|
public AmIStorage(byte[] Data)
|
|
{
|
|
this.Data = Data;
|
|
}
|
|
|
|
public static long Open(ServiceCtx Context)
|
|
{
|
|
AmIStorage Storage = Context.GetObject<AmIStorage>();
|
|
|
|
MakeObject(Context, new AmIStorageAccessor(Storage));
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |