summaryrefslogtreecommitdiff
path: root/src/Helpers/Skin.hpp
blob: 6f01f18b2ae053d7b9258bd5adcf439a75e89602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <SFML/Graphics/Color.hpp>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>


namespace skin{

	std::vector<sf::Color> loadSkin(std::string skinName);

	std::vector<std::string> removeComments(std::vector<std::string> linesVector);

	bool containOnlySpace(std::string line);

	std::vector<int> extractRGBA(std::string line);
}