diff options
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/Makefile.am | 1 | ||||
-rw-r--r-- | src/game/game.h | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Makefile.am b/src/game/Makefile.am index 537bb3a..ff46654 100644 --- a/src/game/Makefile.am +++ b/src/game/Makefile.am @@ -6,5 +6,4 @@ noinst_LTLIBRARIES = libgame.la libgame_la_SOURCES = game.cc game.h player.h sector.h ship.cc ship.h star.cc \ star.h world.h INCLUDES = -I$(top_srcdir)/src -noinst_HEADERS = sector.h world.h libgame_la_LIBADD = $(top_builddir)/src/common/libcommon.la diff --git a/src/game/game.h b/src/game/game.h index a2c4156..ed49135 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -7,9 +7,9 @@ #ifndef __INCLUDED_GAME_H__ #define __INCLUDED_GAME_H__ -// project headers #include "ship.h" #include "star.h" +#include "common/console.h" /// The game engine namespace game @@ -34,3 +34,4 @@ namespace game }; #endif // __INCLUDED_GAME_H__ + |