blob: 845c544b52cdb367012c117a902f766066cbc36c (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | #ifndef STATE_H
#define STATE_H
#include <memory>
class Game;
class State {
 public:
  virtual std::unique_ptr<State> operator()(Game& game) { return {}; };
};
#endif
 |