summary refs log tree commit diff stats
path: root/hsglobal.h
blob: 5b92b0e3164a1ce689d4409e77191df1a4917354 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef HSGLOBAL_H
#define HSGLOBAL_H

class GlobalHighscoreListState : public State {
	public:
		GlobalHighscoreListState();
		void input(SDL_keysym key);
		void render(SDL_Surface* screen);

	private:
		static int LoadHighscoreList(void* pParam);

		SDL_Surface* list;
		SDL_Surface* options;
		SDL_Surface* pointer;
};

#endif