From 6854879965ce8446248b059bcc3541bb82c33731 Mon Sep 17 00:00:00 2001
From: Joseph Walton-Rivers <joseph@walton-rivers.uk>
Date: Sat, 2 Jul 2022 00:33:15 +0100
Subject: [PATCH] make header define less silly

---
 include/fggl/fggl.hpp | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/include/fggl/fggl.hpp b/include/fggl/fggl.hpp
index decee35..db5e9d3 100644
--- a/include/fggl/fggl.hpp
+++ b/include/fggl/fggl.hpp
@@ -12,22 +12,23 @@
  * If not, see <https://www.gnu.org/licenses/>.
  */
 
-#ifndef FGGL_INCLUDE_FGGL_FGGL_HPP
-#define FGGL_INCLUDE_FGGL_FGGL_HPP
+#ifndef FGGL_HPP
+#define FGGL_HPP
 
 #include "fggl/app.hpp"
-#include "fggl/util/service.hpp"
 
+// module system
+#include "fggl/modules/manager.hpp"
 #include "fggl/data/module.hpp"
 #include "fggl/input/module.hpp"
 #include "fggl/gui/module.hpp"
 
 #include "fggl/display/glfw/module.hpp"
+#include "fggl/gfx/ogl4/module.hpp"
+
 #include "fggl/audio/null_audio.hpp"
 #include "fggl/audio/openal/module.hpp"
 
-#include "fggl/gfx/ogl4/module.hpp"
-
 namespace fggl {
 
 }
-- 
GitLab