diff options
Diffstat (limited to 'core/io/pck_packer.h')
-rw-r--r-- | core/io/pck_packer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/io/pck_packer.h b/core/io/pck_packer.h index 3c5435784a..fb2acee45d 100644 --- a/core/io/pck_packer.h +++ b/core/io/pck_packer.h @@ -55,13 +55,15 @@ class PCKPacker : public RefCounted { uint64_t ofs = 0; uint64_t size = 0; bool encrypted = false; + bool removal = false; Vector<uint8_t> md5; }; Vector<File> files; public: Error pck_start(const String &p_pck_path, int p_alignment = 32, const String &p_key = "0000000000000000000000000000000000000000000000000000000000000000", bool p_encrypt_directory = false); - Error add_file(const String &p_pck_path, const String &p_src, bool p_encrypt = false); + Error add_file(const String &p_target_path, const String &p_source_path, bool p_encrypt = false); + Error add_file_removal(const String &p_target_path); Error flush(bool p_verbose = false); PCKPacker() {} |