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

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

#endif