using System.IO;
using ICSharpCode.SharpZipLib.Zip;
namespace TriLibCore
{
/// Represents a class passed as the custom data to the Asset Loader Context when loading Models from Zip files.
public class ZipLoadCustomContextData
{
///
/// The zip file to be used.
///
public ZipFile ZipFile;
///
/// The stream used to load the zip file.
///
public Stream Stream;
///
/// The optional custom data.
///
public object CustomData;
}
}