From db7d8c2d87a9704f7404398815c9d686b9a099b9 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Mon, 28 Nov 2022 11:00:48 +0200 Subject: [GDExtension] Expose some low level functions and String operators. --- core/io/file_access.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/io/file_access.h') diff --git a/core/io/file_access.h b/core/io/file_access.h index 3116ed521f..3e51ba11ed 100644 --- a/core/io/file_access.h +++ b/core/io/file_access.h @@ -127,7 +127,7 @@ public: Variant get_var(bool p_allow_objects = false) const; virtual uint64_t get_buffer(uint8_t *p_dst, uint64_t p_length) const; ///< get an array of bytes - Vector _get_buffer(int64_t p_length) const; + Vector get_buffer(int64_t p_length) const; virtual String get_line() const; virtual String get_token() const; virtual Vector get_csv_line(const String &p_delim = ",") const; @@ -162,7 +162,7 @@ public: virtual String get_pascal_string(); virtual void store_buffer(const uint8_t *p_src, uint64_t p_length); ///< store an array of bytes - void _store_buffer(const Vector &p_buffer); + void store_buffer(const Vector &p_buffer); void store_var(const Variant &p_var, bool p_full_objects = false); -- cgit v1.2.3