10 lines
197 B
C++
10 lines
197 B
C++
#include <string>
|
|
#include <SFML/Graphics/Color.hpp>
|
|
|
|
namespace palette {
|
|
using std::string;
|
|
|
|
void init(const std::string &config="assets/palette.json");
|
|
|
|
sf::Color get(const string &key);
|
|
}
|