You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
371 B
17 lines
371 B
/** |
|
* @file drlg_l3.h |
|
* |
|
* Interface of the caves level generation algorithms. |
|
*/ |
|
#pragma once |
|
|
|
#include "gendung.h" |
|
|
|
namespace devilution { |
|
|
|
void AddFenceDoors(); |
|
void CreateL3Dungeon(uint32_t rseed, lvl_entry entry); |
|
void LoadL3Dungeon(const char *sFileName, int vx, int vy); |
|
void LoadPreL3Dungeon(const char *sFileName); |
|
|
|
} // namespace devilution
|
|
|