19 lines
313 B
C++
19 lines
313 B
C++
//
|
|
// Created by trotfunky on 07/05/19.
|
|
//
|
|
|
|
#ifndef SNIPPETS_XMLPARSER_H
|
|
#define SNIPPETS_XMLPARSER_H
|
|
|
|
#include <string>
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
|
|
namespace xmlParser
|
|
{
|
|
const std::string colorToStr(const sf::Color&);
|
|
const sf::Color& strToColor(const std::string&);
|
|
}
|
|
|
|
#endif //SNIPPETS_XMLPARSER_H
|