summary refs log tree commit diff stats
path: root/dummystate.h
blob: 0f1e48b97ad0767276aa83bca654f5aaac31ae41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef DUMMYSTATE_H
#define DUMMYSTATE_H

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

#endif