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

Remove or make private FileAccess close() methods.

This commit is contained in:
bruvzg
2022-04-12 11:15:02 +03:00
parent 788f355ad2
commit d2ebac3a30
21 changed files with 44 additions and 74 deletions

View File

@@ -44,11 +44,12 @@ class FileAccessAndroid : public FileAccess {
mutable uint64_t pos = 0;
mutable bool eof = false;
void _close();
public:
static AAssetManager *asset_manager;
virtual Error _open(const String &p_path, int p_mode_flags); ///< open a file
virtual void close(); ///< close a file
virtual bool is_open() const; ///< true when file is open
virtual void seek(uint64_t p_position); ///< seek to a given position