mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
19 lines
412 B
C#
19 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using IL2CPU.API;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System.Globalization
|
|
{
|
|
[Plug(Target = typeof(CompareInfo))]
|
|
public static class CompareInfoImpl
|
|
{
|
|
public static void Ctor(CompareInfo aThis, CultureInfo aCulture)
|
|
{
|
|
}
|
|
}
|
|
|
|
}
|