summaryrefslogtreecommitdiff
path: root/src/wilderness_map.hpp
blob: 3db36101fc5374e09419d00d5a923d4620550cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "h-basic.h"
#include "seed.hpp"

/**
 * A structure describing a wilderness map
 */
struct wilderness_map
{
	int feat = 0;                            /* Wilderness feature */
	seed_t seed = seed_t::system();          /* Seed for the RNG when building tile */
	u16b entrance = 0;                       /* Entrance for dungeons */
	bool_ known = FALSE;                     /* Is it seen by the player ? */
};