mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
334 B
C#
16 lines
334 B
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
using Cosmos.Debug.Kernel;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System.IO
|
|
{
|
|
[Plug(typeof(StreamWriter))]
|
|
public static class StreamWriterImpl
|
|
{
|
|
public static void CheckAsyncTaskInProgress(StreamWriter aThis) { }
|
|
|
|
|
|
}
|
|
}
|