1 /**
2  * \file ui-obj-list.h
3  * \brief Object list UI.
4  *
5  * Copyright (c) 2013 Ben Semmler
6  *
7  * This work is free software; you can redistribute it and/or modify it
8  * under the terms of either:
9  *
10  * a) the GNU General Public License as published by the Free Software
11  *    Foundation, version 2, or
12  *
13  * b) the "Angband licence":
14  *    This software may be copied and distributed for educational, research,
15  *    and not for profit purposes provided that this copyright and statement
16  *    are included in all such copies.  Other copyrights may also apply.
17  */
18 
19 #ifndef UI_OBJECT_LIST_H
20 #define UI_OBJECT_LIST_H
21 
22 void object_list_show_subwindow(int height, int width);
23 void object_list_show_interactive(int height, int width);
24 
25 #endif /* UI_OBJECT_LIST_H */
26