Apply the new ground_level method.
[crawl.git] / crawl-ref / source / viewchar.h
blob653bfacdf319102b9f88a47f3427fcd0c04ab603
1 #ifndef VIEWCHAR_H
2 #define VIEWCHAR_H
4 void init_char_table(char_set_type set);
6 dungeon_char_type get_feature_dchar(dungeon_feature_type feat);
7 unsigned dchar_glyph(dungeon_char_type dchar);
9 std::string stringize_glyph(unsigned glyph);
10 int multibyte_strlen(const std::string &s);
12 dungeon_char_type dchar_by_name(const std::string &name);
14 #endif