diff options
author | marynate <mary.w.nate@gmail.com> | 2014-05-25 11:34:51 +0800 |
---|---|---|
committer | marynate <mary.w.nate@gmail.com> | 2014-05-25 14:50:54 +0800 |
commit | e6c1689b69e9e0ec530902b550c9e1e2d1cd0aae (patch) | |
tree | ec9350bef9fc1c0bf6bedd73cc5768115dd6efec /core/os | |
parent | 71355aaab7eca64bec694918c6b911a412ad17f0 (diff) |
Add DirAccess:dir_exist api
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/dir_access.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/dir_access.h b/core/os/dir_access.h index 58a925465a..d8672218bd 100644 --- a/core/os/dir_access.h +++ b/core/os/dir_access.h @@ -91,7 +91,7 @@ public: virtual Error erase_contents_recursive(); //super dangerous, use with care! virtual bool file_exists(String p_file)=0; - + virtual bool dir_exists(String p_dir)=0; virtual size_t get_space_left()=0; |