summary refs log tree commit diff stats
path: root/hslist.h
blob: 80e1c31565ce10bf89ed24150b26b9eb293a896b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <SDL.h>
#include <vector>
#include "highscore.h"

#ifndef HSLIST_H
#define HSLIST_H

class HighscoreList
{
	public:
		SDL_Surface* render();

	protected:
		std::vector<Highscore> getLocalHighscores();
		std::vector<Highscore> getGlobalHighscores();

		std::vector<Highscore> hslist;
};

class LocalHighscoreList : public HighscoreList {
	public:
		LocalHighscoreList();
};

class GlobalHighscoreList : public HighscoreList {
	public:
		GlobalHighscoreList();
		SDL_Surface* render();

	private:
		typedef HighscoreList super;

	protected:
		bool fail;
};

#endif