mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
Other plug missed :-(
This commit is contained in:
parent
4197d35f3d
commit
5d3d991035
1 changed files with 15 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Text;
|
||||
using Cosmos.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()");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue