You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Bring that Whole New World to the Old Continent too
Applies the clang-format style to the 2.1 branch as done for master in
5dbf1809c6.
This commit is contained in:
@@ -32,23 +32,20 @@
|
||||
#ifdef ANDROID_NATIVE_ACTIVITY
|
||||
|
||||
#include "os/dir_access.h"
|
||||
#include <stdio.h>
|
||||
#include <android/asset_manager.h>
|
||||
#include <android/log.h>
|
||||
#include <android_native_app_glue.h>
|
||||
#include <stdio.h>
|
||||
|
||||
class DirAccessAndroid : public DirAccess {
|
||||
|
||||
|
||||
class DirAccessAndroid : public DirAccess {
|
||||
|
||||
AAssetDir* aad;
|
||||
AAssetDir *aad;
|
||||
String current_dir;
|
||||
String current;
|
||||
|
||||
static DirAccess *create_fs();
|
||||
|
||||
public:
|
||||
|
||||
virtual bool list_dir_begin(); ///< This starts dir listing
|
||||
virtual String get_next();
|
||||
virtual bool current_is_dir() const;
|
||||
@@ -61,10 +58,8 @@ public:
|
||||
virtual Error change_dir(String p_dir); ///< can be relative or absolute, return false on success
|
||||
virtual String get_current_dir(); ///< return current dir location
|
||||
|
||||
|
||||
virtual bool file_exists(String p_file);
|
||||
|
||||
|
||||
virtual Error make_dir(String p_dir);
|
||||
|
||||
virtual Error rename(String p_from, String p_to);
|
||||
|
||||
Reference in New Issue
Block a user