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
458 B
22 lines
458 B
|
6 years ago
|
/**
|
||
|
4 years ago
|
* @file levels/drlg_l4.h
|
||
|
6 years ago
|
*
|
||
|
|
* Interface of the hell 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
|
|
||
|
4 years ago
|
extern Point DiabloQuad1;
|
||
|
|
extern Point DiabloQuad2;
|
||
|
|
extern Point DiabloQuad3;
|
||
|
|
extern Point DiabloQuad4;
|
||
|
4 years ago
|
|
||
|
5 years ago
|
void CreateL4Dungeon(uint32_t rseed, lvl_entry entry);
|
||
|
5 years ago
|
void LoadPreL4Dungeon(const char *path);
|
||
|
4 years ago
|
void LoadL4Dungeon(const char *path, Point spawn);
|
||
|
8 years ago
|
|
||
|
5 years ago
|
} // namespace devilution
|