aboutsummaryrefslogtreecommitdiff
path: root/src/settings.h
blob: 1109bcd7db2e8a906f3c349baaf27bab1188e4fa (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include <string>
#include <vector>

namespace settings {
    std::string getString(const std::string& key);

    extern const std::vector<std::string> objectTypes;
}