home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d115 / marketroid.lha / Marketroid / src / imagebase / bptr1.c < prev    next >
C/C++ Source or Header  |  1987-11-22  |  424b  |  23 lines

  1. static UWORD bptr10[9];
  2.  
  3. static UWORD bptr11[] = { 
  4.   0x800,  0x4900,  0x2A00,  0x1C00,  0xFF80,  0x1C00,  0x2A00,  0x4900, 
  5.   0x800
  6. };
  7.  
  8. /*----- bitmap : w = 16, h = 9 ------ */
  9. static struct BitMap bm_bptr1 = {
  10.     2, 9, 0, 4,
  11.     0,
  12.     bptr10, bptr11, bptr10, bptr11,        /*  Trickery here  */
  13.     0, 0, 0, 0
  14. };
  15.  
  16. struct object ob_bptr1 = {
  17.     &bm_bptr1,
  18.     9, 9,
  19.     1, NULL,
  20.     0, 0, 0, 0, 0, 0, 0, 0,
  21.     0            /*  Motionless (more or less)  */
  22. };
  23.