mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-29 21:12:33 +01:00
12 lines
215 B
C#
12 lines
215 B
C#
|
using System;
|
||
|
|
||
|
namespace Ryujinx.Core.OsHle
|
||
|
{
|
||
|
class MemoryAllocator
|
||
|
{
|
||
|
public bool TryAllocate(long Size, out long Address)
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|