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
338 B
13 lines
338 B
/** |
|
* @file drlg_l3.h |
|
* |
|
* Interface of the caves level generation algorithms. |
|
*/ |
|
#ifndef __DRLG_L3_H__ |
|
#define __DRLG_L3_H__ |
|
|
|
void CreateL3Dungeon(DWORD rseed, int entry); |
|
void LoadL3Dungeon(const char *sFileName, int vx, int vy); |
|
void LoadPreL3Dungeon(const char *sFileName, int vx, int vy); |
|
|
|
#endif /* __DRLG_L3_H__ */
|
|
|