11 lines
203 B
C++
11 lines
203 B
C++
#include<Config.hpp>
|
|
#include<GlobalConfig.hpp>
|
|
|
|
using namespace std;
|
|
using namespace Convention;
|
|
|
|
int main()
|
|
{
|
|
cout << ProjectConfig().LoadProperties().FindItem<std::string>("test", "test") << endl;
|
|
}
|