1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

[FileAccess] Implement resize method.

This commit is contained in:
bruvzg
2024-04-08 22:09:34 +03:00
parent 029aadef56
commit 88b3e68f93
19 changed files with 111 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ public:
virtual Error get_error() const override; ///< get last error
virtual Error resize(int64_t p_length) override;
virtual void flush() override;
virtual void store_8(uint8_t p_dest) override; ///< store a byte
virtual void store_16(uint16_t p_dest) override;