mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
460 B
C#
15 lines
460 B
C#
using System;
|
|
using System.Text;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System2_Plugs.System.Text
|
|
{
|
|
[Plug(Target = typeof(DecoderExceptionFallbackBuffer))]
|
|
public static class DecoderExceptionFallbackBufferImpl
|
|
{
|
|
public static bool Fallback(DecoderExceptionFallbackBuffer aThis, byte[] bytesUnknown, int index)
|
|
{
|
|
throw new NotImplementedException("DecoderExceptionFallbackBuffer Fallback()");
|
|
}
|
|
}
|
|
}
|