[FileAccess] Implement resize method.

This commit is contained in:
bruvzg 2024-04-08 22:09:34 +03:00
parent 029aadef56
commit 88b3e68f93
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
19 changed files with 111 additions and 0 deletions

View file

@ -65,6 +65,7 @@ public:
virtual bool eof_reached() const override; // reading passed EOF
virtual Error resize(int64_t p_length) override { return ERR_UNAVAILABLE; }
virtual uint8_t get_8() const override; // get a byte
virtual uint16_t get_16() const override;
virtual uint32_t get_32() const override;