mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
22 lines
423 B
C#
22 lines
423 B
C#
using System;
|
|
|
|
namespace Emile.TestApp
|
|
{
|
|
public unsafe static class ReallySimpleAllocator
|
|
{
|
|
public static void Initialize(int* startAddress, int length)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static int* Allocate(int length)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static void Free(int* pointer)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|