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

void init_char_table(char_set_type set);

dungeon_char_type get_feature_dchar(dungeon_feature_type feat);
ucs_t dchar_glyph(dungeon_char_type dchar);

string stringize_glyph(ucs_t glyph);

dungeon_char_type dchar_by_name(const string &name);

#endif