mirror of
https://github.com/open-goal/jak-project
synced 2026-08-15 21:00:19 -04:00
9e2b49abaa
* add elzip library (doesn't require zlib) * Can analyze directly from a PCSX2 save-state now * Add scaffolding to auto-watch for new save-states * .gitattributes fix
10 lines
210 B
C++
Vendored
Generated
10 lines
210 B
C++
Vendored
Generated
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace elz
|
|
{
|
|
void extractZip(std::string zipname, std::string target = ".");
|
|
void extractFile(std::string zipname, std::string filename, std::string target = ".");
|
|
}
|