We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207e443 commit 1554b55Copy full SHA for 1554b55
library/include/modules/Hotkey.h
@@ -4,9 +4,9 @@
4
5
#include <condition_variable>
6
#include <map>
7
+#include <optional>
8
#include <thread>
9
#include <vector>
-#include <optional>
10
11
namespace DFHack {
12
class DFHACK_EXPORT HotkeyManager {
library/modules/Hotkey.cpp
@@ -1,18 +1,19 @@
1
#include "modules/Hotkey.h"
2
+
3
#include "Core.h"
-#include "CoreDefs.h"
#include "ColorText.h"
#include "MiscUtils.h"
+#include "PluginManager.h"
#include "modules/DFSDL.h"
#include "modules/Gui.h"
-#include "PluginManager.h"
#include "df/global_objects.h"
#include "df/viewscreen.h"
13
#include "df/interfacest.h"
14
15
#include <ranges>
-
-#include "SDL_keycode.h"
16
+#include <SDL_keycode.h>
17
18
using namespace DFHack;
19
0 commit comments