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.
19 lines
384 B
19 lines
384 B
/** |
|
* @file levels/drlg_l3.h |
|
* |
|
* Interface of the caves level generation algorithms. |
|
*/ |
|
#pragma once |
|
|
|
#include <cstdint> |
|
|
|
#include "levels/gendung.h" |
|
|
|
namespace devilution { |
|
|
|
void CreateL3Dungeon(uint32_t rseed, lvl_entry entry); |
|
void LoadPreL3Dungeon(const char *sFileName); |
|
void LoadL3Dungeon(const char *sFileName, Point spawn); |
|
; |
|
|
|
} // namespace devilution
|
|
|