mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
19 lines
445 B
C#
19 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Threading
|
|
{
|
|
[Plug(typeof(global::System.Threading.EventWaitHandle))]
|
|
class EventWaitHandleImpl
|
|
{
|
|
public static bool Set(EventWaitHandle aThis)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|