10 lines
		
	
	
		
			491 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			491 B
		
	
	
	
		
			Plaintext
		
	
	
	
#define queen_width 19
 | 
						|
#define queen_height 22
 | 
						|
static char queen_bits[] = {
 | 
						|
   0x00, 0x02, 0x00, 0x00, 0x02, 0x00, 0x80, 0x0f, 0x00, 0x00, 0x02, 0x00,
 | 
						|
   0x00, 0x02, 0x00, 0xf0, 0x7a, 0x00, 0xfc, 0xff, 0x01, 0x0c, 0x87, 0x01,
 | 
						|
   0x06, 0x07, 0x03, 0x06, 0x07, 0x03, 0x06, 0x07, 0x03, 0x06, 0x07, 0x03,
 | 
						|
   0x06, 0x07, 0x03, 0x0c, 0x87, 0x01, 0x0c, 0x87, 0x01, 0x0c, 0x87, 0x01,
 | 
						|
   0x18, 0xc7, 0x00, 0x18, 0xc7, 0x00, 0x18, 0xe7, 0x00, 0x30, 0x67, 0x00,
 | 
						|
   0xfc, 0xff, 0x01, 0xfc, 0xff, 0x01};
 |