Apply the new ground_level method.
[crawl.git] / crawl-ref / source / jobs.h
blobac7bd15eea79f9d29707ee967955c40ca3b5c471
1 #ifndef JOBS_H
2 #define JOBS_H
4 int ng_num_jobs();
5 job_type get_job(const int index);
6 const char *get_job_abbrev(int which_job);
7 job_type get_job_by_abbrev(const char *abbrev);
8 const char *get_job_name(int which_job);
9 job_type get_job_by_name(const char *name);
11 // job_type bounds checking.
12 bool is_valid_job(job_type job);
14 #endif