mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
420 B
C#
17 lines
420 B
C#
using System;
|
|
|
|
using Cosmos.Core.Plugs.System.Assemblers;
|
|
using Cosmos.IL2CPU.Plugs.Assemblers;
|
|
|
|
namespace Cosmos.IL2CPU.Plugs.System
|
|
{
|
|
[Plug(Target = typeof(Delegate))]
|
|
public static class NormalDelegateImpl
|
|
{
|
|
[PlugMethod(Assembler = typeof(GetMulticastInvokeAssembler))]
|
|
public static IntPtr GetMulticastInvoke(Delegate aThis)
|
|
{
|
|
return IntPtr.Zero;
|
|
}
|
|
}
|
|
}
|