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

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

#endif