mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
16 lines
293 B
C++
16 lines
293 B
C++
#pragma once
|
|
|
|
#include "Config.h"
|
|
#include "Singleton.h"
|
|
|
|
class CAppConfig : public Framework::CConfig, public CSingleton<CAppConfig>
|
|
{
|
|
public:
|
|
CAppConfig();
|
|
virtual ~CAppConfig() = default;
|
|
|
|
static CConfig::PathType GetBasePath();
|
|
|
|
private:
|
|
static CConfig::PathType BuildConfigPath();
|
|
};
|