atrooney-online-2/path_functions.cpp

16 lines
244 B
C++

#include <QDir>
#include "text_file_functions.h"
#include "path_functions.h"
QString get_base_path(){
return (QDir::currentPath() + "/base/");
}
QString get_theme_path(){
return get_base_path() + "themes/" + get_user_theme() + "/";
}