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

#ifndef TITLESTATE_H
#define TITLESTATE_H

class TitleState : public State {
	public:
		State* operator() (SDL_Renderer* renderer);
};

#endif