mirror of
https://github.com/diasurgical/devilution.git
synced 2026-06-20 05:46:12 +00:00
16 lines
288 B
C
16 lines
288 B
C
/**
|
|
* @file setmaps.cpp
|
|
*
|
|
* Interface of functionality for the special quest dungeons.
|
|
*/
|
|
#ifndef __SETMAPS_H__
|
|
#define __SETMAPS_H__
|
|
|
|
int ObjIndex(int x, int y);
|
|
void LoadSetMap();
|
|
|
|
/* rdata */
|
|
extern const char *const quest_level_names[];
|
|
|
|
#endif /* __SETMAPS_H__ */
|