Skip to content

Commit 8824a03

Browse files
committed
split river/lake/ocean-related functions from overmap.cpp
1 parent 75dd3c5 commit 8824a03

File tree

3 files changed

+795
-755
lines changed

3 files changed

+795
-755
lines changed

src/flood_fill.h

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,18 @@
22
#ifndef CATA_SRC_FLOOD_FILL_H
33
#define CATA_SRC_FLOOD_FILL_H
44

5+
#include <algorithm>
6+
#include <array>
7+
#include <bitset>
8+
#include <cstdint>
59
#include <queue>
610
#include <vector>
711
#include <unordered_set>
812

9-
#include "enums.h"
13+
#include "cata_utility.h"
14+
#include "coordinates.h"
15+
#include "coords_fwd.h"
16+
#include "map_scale_constants.h"
1017
#include "point.h"
1118

1219
namespace ff

0 commit comments

Comments
 (0)