You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
314 B
C#

4 years ago
using System;
// Token: 0x02000138 RID: 312
public class AssetStream
{
// Token: 0x06000856 RID: 2134 RVA: 0x0002591C File Offset: 0x00023B1C
public static bool GetZipFileOffsetLength(string zipFilePath, string fileName, out long offset, out long length)
{
offset = 0L;
length = 0L;
return true;
}
}