mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
16 lines
No EOL
498 B
C#
16 lines
No EOL
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.CustomImplementations.System.Runtime.CompilerServices {
|
|
[Plug(Target=typeof(RuntimeHelpers))]
|
|
public static class RuntimeHelpersImpl {
|
|
[PlugMethod(Signature="System_Void___System_Runtime_CompilerServices_RuntimeHelpers__cctor____")]
|
|
public static void CCtor() {
|
|
//todo: do something
|
|
}
|
|
}
|
|
} |