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

#ifndef STATE_H
#define STATE_H

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

#endif