// // Created by Syméon on 17/08/2017. // #ifndef FEIS_MARKER_H #define FEIS_MARKER_H #include #include #include enum Etat { APPROCHE, MISS, EARLY, GOOD, GREAT, PERFECT }; class Marker { public: Marker(std::string folder = "mk0004"); sf::Sprite getSprite(Etat etat, int frame); private: std::map textures; std::string path; }; #endif //FEIS_MARKER_H