From b15a52204fe8fd4510c4b90310146b6e307c52b4 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Fri, 17 Feb 2023 15:05:22 +0100 Subject: [PATCH] src/gamelogic.h: make it import-order invariant the fix is adding an implicit dependency. Some automatic code formatters would break the build on GCC. --- src/gamelogic.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gamelogic.h b/src/gamelogic.h index 96afaec..f133e71 100644 --- a/src/gamelogic.h +++ b/src/gamelogic.h @@ -1,5 +1,7 @@ #pragma once +#include + #include #include "sceneGraph.hpp"