Mercurial > minori
view include/core/filesystem.h @ 36:2743011a6042
*: mass update
formatted all source files, converted ALL instances of setStyleSheet() to
palettes and fonts (stylesheets suck), and I changed the clang-format file because
it wasn't working on my laptop for some reason.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 21 Sep 2023 15:17:47 -0400 |
parents | fc1bf97c528b |
children | 4b05bc7668eb |
line wrap: on
line source
#ifndef __core__filesystem_h #define __core__filesystem_h #include <string> namespace Filesystem { bool CreateDirectories(std::string path); bool Exists(std::string path); std::string GetParentDirectory(std::string path); std::string GetConfigPath(); } // namespace Filesystem #endif // __core__filesystem_h