mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
397 B
C#
18 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Cosmos.Core.Plugs
|
|
{
|
|
[Plug(Target=typeof(RuntimeHelpers))]
|
|
public static class RuntimeHelpersImpl
|
|
{
|
|
public static int get_OffsetToStringData()
|
|
{
|
|
return 16;
|
|
}
|
|
}
|
|
}
|