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