mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:38:32 +00:00
12 lines
214 B
C#
12 lines
214 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.OsHle
|
|
{
|
|
class MemoryAllocator
|
|
{
|
|
public bool TryAllocate(long Size, out long Address)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |