mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-03 14:56:27 -05:00
aloha
This commit is contained in:
23
Ryujinx/OsHle/Objects/AmIStorage.cs
Normal file
23
Ryujinx/OsHle/Objects/AmIStorage.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user