mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
17 lines
293 B
C++
17 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();
|
|
};
|