1 /*
2  * xbm_icon.h -- wrapper header file including the correct xbm
3  * icon file for different Hexen II flavors
4  * $Id: xbm_icon.h,v 1.4 2007-09-07 20:06:03 sezero Exp $
5  *
6  * Copyright (C) 2005-2012  O.Sezer <sezero@users.sourceforge.net>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or (at
11  * your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  *
17  * See the GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23 
24 #if defined(H2W)
25 #include "../../resource/hexenworld.xbm"
26 #elif defined(H2MP)
27 #include "../resource/h2mp.xbm"
28 #else
29 #include "../resource/hexen2.xbm"
30 #endif
31 
32