summary refs log tree commit diff stats
path: root/src/game.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-14 16:33:29 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-14 16:33:29 -0400
commit6eaefb4dd401a1c5e9cc7fb8e909521e045c0710 (patch)
tree9ab9b94012b48688bd7b8dce1d7b1933f9b123df /src/game.h
parent6cd202153bb61e14f9968845c43ca966ceab1e05 (diff)
downloadtherapy-6eaefb4dd401a1c5e9cc7fb8e909521e045c0710.tar.gz
therapy-6eaefb4dd401a1c5e9cc7fb8e909521e045c0710.tar.bz2
therapy-6eaefb4dd401a1c5e9cc7fb8e909521e045c0710.zip
Removed some unnecessary header transculsions
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;