atrooney-online-2/path_functions.cpp
David Skoland ca732f27a1 -
2017-01-01 16:14:29 +01:00

18 lines
281 B
C++

#include <QDir>
#include "global_variables.h"
#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/" + g_user_theme.toLower() + "/";
}