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.
13 lines
342 B
13 lines
342 B
/** |
|
* @file drlg_l2.h |
|
* |
|
* Interface of the catacombs level generation algorithms. |
|
*/ |
|
#ifndef __DRLG_L2_H__ |
|
#define __DRLG_L2_H__ |
|
|
|
void LoadL2Dungeon(const char *sFileName, int vx, int vy); |
|
void LoadPreL2Dungeon(const char *sFileName, int vx, int vy); |
|
void CreateL2Dungeon(DWORD rseed, int entry); |
|
|
|
#endif /* __DRLG_L2_H__ */
|
|
|