2024-08-01 17:12:31 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "stdafx.hpp"
|
|
|
|
|
|
|
|
|
|
namespace VSW::Materializer::PluginMain {
|
|
|
|
|
|
|
|
|
|
#ifdef MATERIALIZER_PLUGIN
|
2024-08-11 00:25:08 +08:00
|
|
|
|
|
|
|
|
class ConfigManager {
|
|
|
|
|
public:
|
|
|
|
|
static ConfigManager& GetSingleton();
|
|
|
|
|
private:
|
|
|
|
|
static YYCC::yycc_u8string GetConfigFilePath();
|
|
|
|
|
ConfigManager();
|
|
|
|
|
~ConfigManager();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
YYCC::ConfigManager::StringSetting m_LastFilePath;
|
|
|
|
|
YYCC::ConfigManager::NumberSetting<UINT> m_Encoding;
|
|
|
|
|
YYCC::ConfigManager::CoreManager m_Mgr;
|
|
|
|
|
};
|
|
|
|
|
|
2024-08-01 17:12:31 +08:00
|
|
|
void InitializePluginInfo();
|
|
|
|
|
PluginInfo* GetPluginInfo();
|
|
|
|
|
PluginInterface* GetPluginInterface();
|
2024-08-11 00:25:08 +08:00
|
|
|
|
2024-08-01 17:12:31 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
}
|