summary refs log tree commit diff stats
path: root/state.h
blob: 2d6f804ffe8ae81a7a6dadecc38857fa05f3dfcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <SDL.h>

#ifndef STATE_H
#define STATE_H

class State
{
	public:
		virtual State* operator() (SDL_Renderer* renderer) {return NULL;};
};

#endif