summary refs log tree commit diff stats
path: root/gamestate.h
blob: 9b0b52cc6244464026debd52ac9707c20cf9b203 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GAMESTATE_H
#define GAMESTATE_H

#include <memory>

#include "mazeoflife.h"
#include "state.h"

class GameState : public State {
 public:
  std::unique_ptr<State> operator()(Game& game);
};

#endif