Skip to content

Instantly share code, notes, and snippets.

@mrmwiebe
mrmwiebe / ZipTools.cs
Last active November 13, 2016 17:28 — forked from r2d2rigo/ExtractZipFile.cs
Using SharpZipLib to extract zip files from Unity in a coroutine-friendly way
//Standalone version of r2d2rigo's coroutine unzip
//Leaves room for other tools as well
using UnityEngine;
using System.Collections;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;
public class ZipTools {