summary refs log tree commit diff stats
path: root/state.h
blob: 5e8c4e7f1f3e7b622a8765fc134ed38c3097b942 (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_Window* window, SDL_Renderer* renderer) {return NULL;};
};

#endif