Play-/Source/app_shared/AppConfig.cpp

15 lines
254 B
C++
Raw Normal View History

2025-03-11 08:53:57 -04:00
#include "AppConfig.h"
#include "PathUtils.h"
#define CONFIG_FILENAME ("config.xml")
CAppConfig::CAppConfig()
: CConfig(BuildConfigPath())
{
}
Framework::CConfig::PathType CAppConfig::BuildConfigPath()
{
return GetBasePath() / CONFIG_FILENAME;
}