diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-08 22:09:34 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-12 19:20:49 +0300 |
commit | 88b3e68f93fad5681b27b11ddacc562b03d5ef45 (patch) | |
tree | 03f57722ab74282b862a5aba5433ff928bfdd972 /core/io/file_access_encrypted.h | |
parent | 029aadef563fb69cf49aa9795b62f27171f8c3f4 (diff) | |
download | redot-engine-88b3e68f93fad5681b27b11ddacc562b03d5ef45.tar.gz |
[FileAccess] Implement `resize` method.
Diffstat (limited to 'core/io/file_access_encrypted.h')
-rw-r--r-- | core/io/file_access_encrypted.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/file_access_encrypted.h b/core/io/file_access_encrypted.h index 489d213b8f..42afe49a5e 100644 --- a/core/io/file_access_encrypted.h +++ b/core/io/file_access_encrypted.h @@ -78,6 +78,7 @@ public: virtual Error get_error() const override; ///< get last error + virtual Error resize(int64_t p_length) override { return ERR_UNAVAILABLE; } virtual void flush() override; virtual void store_8(uint8_t p_dest) override; ///< store a byte virtual void store_buffer(const uint8_t *p_src, uint64_t p_length) override; ///< store an array of bytes |