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