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

#ifndef GAMESTATE_H
#define GAMESTATE_H

class GameState : public State {
	public:
		State* operator() (SDL_Window* window, SDL_Renderer* renderer);
};

#endif