mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
16 lines
308 B
C#
16 lines
308 B
C#
using System.Globalization;
|
|
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.CPU_Plugs.System {
|
|
[Plug(typeof(CharUnicodeInfo))]
|
|
public static class CharUnicodeInfoImpl {
|
|
public static void Cctor() {
|
|
|
|
}
|
|
|
|
public static bool InitTable() {
|
|
return false;
|
|
}
|
|
}
|
|
}
|