123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.IO;
- using ICSharpCode.SharpZipLib.Zip;
- using TriLibCore.General;
- namespace TriLibCore
- {
-
- public class ZipLoadCustomContextData
- {
-
-
-
- public ZipFile ZipFile;
-
-
-
- public ZipEntry ZipEntry;
-
-
-
- public Stream Stream;
-
-
-
- public Action<IContextualizedError> OnError;
-
-
-
- public Action<AssetLoaderContext> OnMaterialsLoad;
- }
- }
|