1 /**
2  * \file ui-store.h
3  * \brief Store UI
4  *
5  * Copyright (c) 1997 Robert A. Koeneke, James E. Wilson, Ben Harrison
6  * Copyright (c) 1998-2014 Angband developers
7  *
8  * This work is free software; you can redistribute it and/or modify it
9  * under the terms of either:
10  *
11  * a) the GNU General Public License as published by the Free Software
12  *    Foundation, version 2, or
13  *
14  * b) the "Angband licence":
15  *    This software may be copied and distributed for educational, research,
16  *    and not for profit purposes provided that this copyright and statement
17  *    are included in all such copies.  Other copyrights may also apply.
18  */
19 
20 #ifndef INCLUDED_UI_STORE_H
21 #define INCLUDED_UI_STORE_H
22 
23 
24 void textui_store_knowledge(int n);
25 void enter_store(game_event_type type, game_event_data *data, void *user);
26 void use_store(game_event_type type, game_event_data *data, void *user);
27 void leave_store(game_event_type type, game_event_data *data, void *user);
28 
29 #endif /* INCLUDED_UI_STORE_H */
30