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 75dd3c5 commit 0e7f5b4Copy full SHA for 0e7f5b4
src/flood_fill.h
@@ -2,11 +2,18 @@
2
#ifndef CATA_SRC_FLOOD_FILL_H
3
#define CATA_SRC_FLOOD_FILL_H
4
5
+#include <algorithm>
6
+#include <array>
7
+#include <bitset>
8
+#include <cstdint>
9
#include <queue>
10
#include <vector>
11
#include <unordered_set>
12
-#include "enums.h"
13
+#include "cata_utility.h"
14
+#include "coordinates.h"
15
+#include "coords_fwd.h"
16
+#include "map_scale_constants.h"
17
#include "point.h"
18
19
namespace ff
0 commit comments