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.
23 lines
499 B
23 lines
499 B
|
6 years ago
|
/**
|
||
|
4 years ago
|
* @file levels/drlg_l1.h
|
||
|
6 years ago
|
*
|
||
|
|
* Interface of the cathedral 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
|
|
||
|
7 years ago
|
extern int UberRow;
|
||
|
|
extern int UberCol;
|
||
|
5 years ago
|
extern bool IsUberRoomOpened;
|
||
|
|
extern bool IsUberLeverActivated;
|
||
|
7 years ago
|
extern int UberDiabloMonsterIndex;
|
||
|
8 years ago
|
|
||
|
5 years ago
|
void CreateL5Dungeon(uint32_t rseed, lvl_entry entry);
|
||
|
4 years ago
|
void LoadPreL1Dungeon(const char *path);
|
||
|
|
void LoadL1Dungeon(const char *path, Point spawn);
|
||
|
8 years ago
|
|
||
|
5 years ago
|
} // namespace devilution
|