mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
15 lines
377 B
C#
15 lines
377 B
C#
using System;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Asm
|
|
{
|
|
[Plug(Target = typeof(Buffer))]
|
|
public class BufferImpl
|
|
{
|
|
[PlugMethod(Assembler = typeof(BufferBlockCopyAsm))]
|
|
public static void BlockCopy(Array src, int srcOffset, Array dst, int dstOffset, int count)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|