ResourcePacks: Support compression

This commit is contained in:
spycrab
2019-02-02 15:54:06 +01:00
parent d55e276d0b
commit b6863ff0a2
3 changed files with 14 additions and 2 deletions

View File

@ -15,6 +15,7 @@ public:
explicit Manifest(const std::string& text);
bool IsValid() const;
bool IsCompressed() const;
const std::string& GetName() const;
const std::string& GetVersion() const;
@ -27,6 +28,7 @@ public:
private:
bool m_valid = true;
bool m_compressed = false;
std::string m_name;
std::string m_version;