source: abuse/trunk/src/imlib/bitmap.h @ 481

Last change on this file since 481 was 57, checked in by Sam Hocevar, 15 years ago
  • Move each header to the same directory as its corresponding source, to get a better idea of which files are likely to export symbols.
File size: 547 bytes
Line 
1/*
2 *  Abuse - dark 2D side-scrolling platform game
3 *  Copyright (c) 1995 Crack dot Com
4 *
5 *  This software was released into the Public Domain. As with most public
6 *  domain software, no warranty is made or implied by Crack dot Com or
7 *  Jonathan Clark.
8 */
9
10#define bitmap_width 16
11#define bitmap_height 16
12static char bitmap_bits[] = {
13   0x40, 0x00, 0x40, 0x00, 0x60, 0x18, 0x22, 0x7e, 0x34, 0xff, 0x18, 0xff,
14   0x0c, 0xff, 0x16, 0x7e, 0x23, 0x18, 0x00, 0x00, 0x24, 0xfa, 0x6a, 0x22,
15   0xa9, 0x22, 0xaf, 0x22, 0x29, 0x23, 0x29, 0xfb};
16
17
Note: See TracBrowser for help on using the repository browser.