#ifndef HSLIST_H #define HSLIST_H class HighscoreList { public: SDL_Surface* render(); protected: std::vector getLocalHighscores(); std::vector getGlobalHighscores(); std::vector hslist; }; class LocalHighscoreList : public HighscoreList { public: LocalHighscoreList(); }; #endif