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