summary refs log tree commit diff stats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/game.h b/src/game.h index ab8b906..065aca8 100644 --- a/src/game.h +++ b/src/game.h
@@ -1,12 +1,13 @@
1#ifndef GAME_H 1#ifndef GAME_H
2#define GAME_H 2#define GAME_H
3 3
4class Game;
5
6#include "map.h"
7#include <memory> 4#include <memory>
8#include "entity.h"
9#include <functional> 5#include <functional>
6#include "renderer.h"
7#include <list>
8
9class Entity;
10class Map;
10 11
11const int TILE_WIDTH = 8; 12const int TILE_WIDTH = 8;
12const int TILE_HEIGHT = 8; 13const int TILE_HEIGHT = 8;