mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
23 lines
453 B
C#
23 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using IL2CPU.API;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System
|
|
{
|
|
[Plug(Target = typeof(global::System.Globalization.CharUnicodeInfo))]
|
|
public static class CharUnicodeInfoImpl
|
|
{
|
|
public static void Cctor()
|
|
{
|
|
|
|
}
|
|
|
|
public static bool InitTable()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|