summaryrefslogblamecommitdiffstats
path: root/crawl-ref/source/showsymb.h
blob: 07e76c9317e977ceea6d6cd25b70fc7446ac8676 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                  
                 
 





                       
                                                    
                                            
                                           
                                           
                                       
 

                                                

      
#ifndef SHOWSYMB_H
#define SHOWSYMB_H

#include "show.h"

struct glyph
{
    unsigned ch;
    unsigned short col;
};

unsigned get_feat_symbol(dungeon_feature_type feat);
unsigned get_item_symbol(show_item_type it);
glyph get_item_glyph(const item_def *item);
glyph get_mons_glyph(const monsters *mons);
glyph get_show_glyph(show_type object);

unsigned get_screen_glyph( const coord_def &p );

#endif