mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
17 lines
341 B
C++
17 lines
341 B
C++
#pragma once
|
|
|
|
#include "Config.h"
|
|
#include "Singleton.h"
|
|
|
|
class CAppConfig : public Framework::CConfig, public CSingleton<CAppConfig>
|
|
{
|
|
public:
|
|
CAppConfig();
|
|
virtual ~CAppConfig() = default;
|
|
|
|
//This needs to be implemented by every application/executable
|
|
fs::path GetBasePath() const;
|
|
|
|
private:
|
|
CConfig::PathType BuildConfigPath();
|
|
};
|