OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / flavor / flavor-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 struct describe_option_type {
6     BIT_FLAGS mode;
7     bool aware;
8     bool known; // 鑑定 or *鑑定* 済.
9     bool flavor;
10 };
11
12 class ItemEntity;
13 std::string get_ability_abbreviation(const ItemEntity &o_ptr, bool is_kanji, bool all);
14 std::string get_inscription(const ItemEntity &item);
15
16 #ifdef JP
17 std::string describe_count_with_counter_suffix(const ItemEntity &item);
18 #endif