summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/jobs.h
blob: f885418f6574f4d6853c2e567d728b75ed3789ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef JOBS_H
#define JOBS_H

int ng_num_classes();
job_type get_class(const int index);
int get_class_index_by_abbrev(const char *abbrev);
const char *get_class_abbrev(int which_job);
int get_class_by_abbrev(const char *abbrev);
int get_class_index_by_name(const char *name);
const char *get_class_name(int which_job);
int get_class_by_name(const char *name);

#endif