2019-05-07 13:07:58 +02:00
|
|
|
//
|
|
|
|
// Created by trotfunky on 07/05/19.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SNIPPETS_XMLPARSER_H
|
|
|
|
#define SNIPPETS_XMLPARSER_H
|
|
|
|
|
2019-05-16 13:07:29 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
|
|
|
|
|
2019-05-07 13:07:58 +02:00
|
|
|
namespace xmlParser
|
|
|
|
{
|
2019-05-16 13:07:29 +02:00
|
|
|
const std::string colorToStr(const sf::Color&);
|
|
|
|
const sf::Color& strToColor(const std::string&);
|
2019-05-07 13:07:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif //SNIPPETS_XMLPARSER_H
|