Created
March 13, 2016 21:56
-
-
Save camden-smallwood-zz/58cd812c6477bc71173c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using (var patchFile = File.Open("./maps/patches/tags.xdelta", FileMode.Open, FileAccess.Read)) | |
| using (var cleanFile = File.Open("./maps_ed/tags.dat", FileMode.Open, FileAccess.Read)) | |
| using (var moddedFile = File.Open("./maps/tags.dat", FileMode.Open, FileAccess.ReadWrite)) | |
| { | |
| new Xdelta.Decoder(cleanFile, patchFile, moddedFile).Run(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment