diff options
Diffstat (limited to 'editor/precomp.hpp')
-rw-r--r-- | editor/precomp.hpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/editor/precomp.hpp b/editor/precomp.hpp index 93ff8164..27d0f317 100644 --- a/editor/precomp.hpp +++ b/editor/precomp.hpp @@ -1,14 +1,20 @@ #pragma once #include "src/precomp.hpp" + #include <cstdlib> +#include <map> + +#include <fmt/format.h> +#include <fmt/compile.h> #include <Corrade/Utility/Arguments.h> -#include <Magnum/Math/Color.h> -#include <Magnum/GL/DebugOutput.h> #include <Magnum/GL/Renderer.h> #include <Magnum/ImGuiIntegration/Context.h> + #if __has_include(<SDL.h>) #include <Magnum/Platform/Sdl2Application.h> +#include <SDL_keycode.h> +#include <SDL_events.h> #endif |