OSDN Git Service

Merge pull request #2942 from backwardsEric/sprintf-refactor-floor-save
[hengbandforosx/hengbandosx.git] / src / wizard / wizard-item-modifier.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 enum class WishResultType { FAIL = -1,
6     NOTHING = 0,
7     NORMAL = 1,
8     EGO = 2,
9     ARTIFACT = 3,
10     MAX };
11
12 class PlayerType;
13 void wizard_item_modifier(PlayerType *player_ptr);
14 void wiz_modify_item(PlayerType *player_ptr);
15 WishResultType do_cmd_wishing(PlayerType *player_ptr, int prob, bool art_ok, bool ego_ok, bool confirm);
16 void wiz_identify_full_inventory(PlayerType *player_ptr);