summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godmenu.h
blob: 0e7ad532688b0671492c186022a9a84d04d6679d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file
 * @brief Declarations for the god menu.
 */

#include "menu.h"

class GodMenuEntry : public MenuEntry
{
public:
    GodMenuEntry(god_type god, bool long_name = false);

    virtual string get_text(const bool unused = false) const;

public:
    god_type god;

private:
    string colour_text;
};