OSDN Git Service

Merge remote-tracking branch 'remotes/origin/feature/Fix-saved-floor-exceed' into...
[hengband/hengband.git] / src / autopick / autopick-editor-command.h
1 #pragma once
2
3 #include "system/angband.h"
4 #include "autopick/autopick-util.h"
5
6 /*! APE means AutoPickEditor*/
7 typedef enum ape_quittance {
8         APE_QUIT = 0,
9         APE_QUIT_WITHOUT_SAVE = 1,
10         APE_QUIT_AND_SAVE = 2
11 } ape_quittance;
12
13 ape_quittance do_editor_command(player_type *player_ptr, text_body_type *tb, int com_id);