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