summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acquire.h
blob: 97015d2dea34e14b0707a39c317a13f93cb1574f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @file
 * @brief Acquirement and Trog/Oka/Sif gifts.
**/

#ifndef ACQUIRE_H
#define ACQUIRE_H

bool acquirement(object_class_type force_class, int agent,
                 bool quiet = false, int *item_index = NULL,
                 bool debug = false);

int acquirement_create_item(object_class_type class_wanted,
                            int agent, bool quiet,
                            const coord_def &pos, bool debug = false);

#endif