Cosmos/source/Cosmos.Core_Plugs/System/Threading/TaskImpl.cs
2017-12-02 13:28:05 +01:00

22 lines
413 B
C#

using System.Threading;
using Cosmos.IL2CPU.API.Attribs;
using System.Threading.Tasks;
namespace Cosmos.Core_Plugs.System.Threading
{
[Plug(Target = typeof(Task))]
public static class TaskImpl
{
public static void Cctor()
{
}
public static void Ctor()
{
}
public static void Dispose(Task aThis, bool disposing)
{
}
}
}