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

class HowToPlayState : public State {
	public:
		HowToPlayState();
		void input(SDLKey key);
		void render(SDL_Surface* screen);

	private:
		SDL_Surface* background1;
		SDL_Surface* background2;
		SDL_Surface* pointer;
		bool secondPage;
		int selection;
};

#endif