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.
22 lines
540 B
22 lines
540 B
/** |
|
* @file levels/drlg_l4.h |
|
* |
|
* Interface of the hell level generation algorithms. |
|
*/ |
|
#pragma once |
|
|
|
#include "engine/world_tile.hpp" |
|
#include "levels/gendung.h" |
|
|
|
namespace devilution { |
|
|
|
extern WorldTilePosition DiabloQuad1; |
|
extern WorldTilePosition DiabloQuad2; |
|
extern WorldTilePosition DiabloQuad3; |
|
extern WorldTilePosition DiabloQuad4; |
|
|
|
void CreateL4Dungeon(uint32_t rseed, lvl_entry entry); |
|
void LoadPreL4Dungeon(const char *path); |
|
void LoadL4Dungeon(const char *path, Point spawn); |
|
|
|
} // namespace devilution
|
|
|