summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-scan.h
blob: 5b4ef24f0ef11e24e3151b9539c7821c3cf56dd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file
 * @brief Debugging code to scan the list of items and monsters.
**/

#ifndef DBGSCAN_H
#define DBGSCAN_H

void debug_item_scan();
void debug_mons_scan();
void check_map_validity();

#ifdef DEBUG_DIAGNOSTICS
void objstat_record_item(item_def &item);
void objstat_generate_stats();
void objstat_record_monster(monster *mons);
void objstat_iteration_stats();
#endif

#endif