From dacebbe6b10a37e2df7ad1517d9bfb841e32e41a Mon Sep 17 00:00:00 2001 From: Riyyi Date: Mon, 1 Feb 2021 17:21:43 +0100 Subject: [PATCH] Remove entrypoint.h from generic include collection --- game/src/game.cpp | 1 + inferno/src/inferno.h | 9 ++++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/game/src/game.cpp b/game/src/game.cpp index 74b2075..4a02b89 100644 --- a/game/src/game.cpp +++ b/game/src/game.cpp @@ -1,4 +1,5 @@ #include "inferno.h" +#include "inferno/entrypoint.h" class Game : public Inferno::Application { diff --git a/inferno/src/inferno.h b/inferno/src/inferno.h index e8e925b..4f019f8 100644 --- a/inferno/src/inferno.h +++ b/inferno/src/inferno.h @@ -1,17 +1,16 @@ #ifndef INFERNO_H #define INFERNO_H -// This file is for use by the game +// For use by the game // ----------------------------------------- +#include "inferno/core.h" + #include "inferno/application.h" +#include "inferno/assert.h" #include "inferno/io/log.h" // ----------------------------------------- -#include "inferno/entrypoint.h" - -// ----------------------------------------- - #endif // INFERNO_H