1 /*
2     XBlockOut a 3D Tetris
3 
4     Copyright (C) 1992,1993,1994  Thierry EXCOFFIER
5 
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 1, or (at your option)
9     any later version.
10 
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15 
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 
20     Contact: Thierry.EXCOFFIER@liris.univ-lyon1.fr
21 */
22 #define icone_width 48
23 #define icone_height 48
24 static char icone_bits[] = {
25    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
26    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x0f,
27    0x00, 0x00, 0x00, 0x00, 0x10, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0a,
28    0x00, 0x00, 0x00, 0x00, 0xfc, 0x09, 0x00, 0x00, 0x00, 0x00, 0x04, 0x09,
29    0x00, 0x00, 0x00, 0x00, 0x04, 0x09, 0x00, 0x00, 0x00, 0x00, 0x04, 0x09,
30    0x00, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0b,
31    0x00, 0x00, 0x00, 0x00, 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x82, 0x60,
32    0x00, 0x00, 0x00, 0x00, 0x41, 0x50, 0x00, 0xe0, 0x0f, 0x80, 0xff, 0x4f,
33    0x00, 0x10, 0x0c, 0x40, 0x30, 0x48, 0x00, 0x08, 0x0a, 0x20, 0x28, 0x48,
34    0x00, 0xfc, 0x09, 0xf0, 0x27, 0x48, 0x00, 0x04, 0x09, 0x10, 0x24, 0x48,
35    0x00, 0x04, 0x09, 0x10, 0x24, 0x48, 0x00, 0x04, 0x09, 0x10, 0xe4, 0x4f,
36    0x00, 0x04, 0x0d, 0x10, 0x34, 0x48, 0x00, 0x04, 0x0b, 0x10, 0x2c, 0xc8,
37    0x00, 0xfc, 0xc9, 0xff, 0x27, 0x48, 0x00, 0x04, 0x29, 0x08, 0x26, 0x28,
38    0x00, 0x04, 0x19, 0x04, 0x25, 0x18, 0x80, 0x07, 0xf9, 0xff, 0xe4, 0xff,
39    0x40, 0x04, 0x05, 0x83, 0x14, 0x04, 0x20, 0x04, 0x83, 0x82, 0x0c, 0x82,
40    0xf0, 0xff, 0x7f, 0x82, 0xfc, 0xff, 0x08, 0x06, 0x41, 0x82, 0x82, 0x20,
41    0x04, 0x05, 0x41, 0x82, 0x41, 0x10, 0xfe, 0x04, 0x41, 0xfe, 0xff, 0xff,
42    0x82, 0x04, 0x41, 0x41, 0x10, 0x04, 0x82, 0x04, 0xc1, 0x20, 0x08, 0x82,
43    0x82, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x82, 0x82, 0x20, 0x08, 0x82, 0x20,
44    0x82, 0x41, 0x10, 0x04, 0x41, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
45    0x40, 0x10, 0x04, 0x41, 0x10, 0x04, 0x20, 0x08, 0x82, 0x20, 0x08, 0x82,
46    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x08, 0x82, 0x20, 0x08, 0x82, 0x20,
47    0x04, 0x41, 0x10, 0x04, 0x41, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48    0x41, 0x10, 0x04, 0x41, 0x10, 0x04, 0x20, 0x08, 0x82, 0x20, 0x08, 0x82};
49