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
@@ -0,0 +1,14 @@
using System;
namespace ICSharpCode.SharpZipLib.Core
{
// Token: 0x02000018 RID: 24
public interface INameTransform
{
// Token: 0x060000B8 RID: 184
string TransformFile(string name);
// Token: 0x060000B9 RID: 185
string TransformDirectory(string name);
}
}