summary refs log tree commit diff stats
path: root/gamestate.h
blob: 32e5d07c55df2f82da0e65ef9c40d1cee2b0c5f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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