This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
// Token: 0x02000065 RID: 101
internal sealed class Locale
{
// Token: 0x060006D9 RID: 1753 RVA: 0x000153AC File Offset: 0x000135AC
private Locale()
{
}
// Token: 0x060006DA RID: 1754 RVA: 0x000153B4 File Offset: 0x000135B4
public static string GetText(string msg)
{
return msg;
}
// Token: 0x060006DB RID: 1755 RVA: 0x000153B8 File Offset: 0x000135B8
public static string GetText(string fmt, params object[] args)
{
return string.Format(fmt, args);
}
}