X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=lib%2Fapp%2Fsetup.h;h=ad70bd4d81bb2eb5ef33a5f291d4149ded7af73c;hb=2e9cf5dbc6b66dda4f94b0c1943a9e3719569435;hp=9d05267c1cefbc2a5d5bc284bcfda354f6439add;hpb=6a03a65019a3f5218f5775dfc08fa81f42573fcb;p=supertux.git diff --git a/lib/app/setup.h b/lib/app/setup.h index 9d05267c1..ad70bd4d8 100644 --- a/lib/app/setup.h +++ b/lib/app/setup.h @@ -23,25 +23,26 @@ #include #include #include -#include "../gui/menu.h" namespace SuperTux { /// File system utility functions struct FileSystem { - static int faccessible(const std::string& filename); - static int fcreatedir(const std::string& relative_dir); - static int fwriteable(const std::string& filename); + static bool faccessible(const std::string& filename); + static bool fcreatedir(const std::string& relative_dir); + static bool fwriteable(const std::string& filename); static std::set read_directory(const std::string& pathname); static std::set dsubdirs(const std::string& rel_path, const std::string& expected_file); static std::set dfiles(const std::string& rel_path, const std::string& glob, const std::string& exception_str); + + static std::string dirname(const std::string& filename); }; /// All you need to get an application up and running struct Setup { - static void info(const std::string& _package_name, const std::string& _package_symbol_name, const std::string& _package_version); + static void init(const std::string& _package_name, const std::string& _package_symbol_name, const std::string& _package_version); static void directories(void); static void general(void); static void general_free();