home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / lemming / part02 / lemmisc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-08-05  |  332 b   |  25 lines

  1. /*
  2.  * lemmisc.c - low-level routines
  3.  *
  4.  * copyright (c) by Alan W. Paeth, 1987. All rights reserved.
  5.  */
  6.  
  7. #include "lem.h"
  8.  
  9. redraw()
  10.     {
  11.     int i;
  12.     erase();
  13.     if (tickflag) tickdraw();
  14.     forobjects
  15.     {
  16.     objectop(i, UNDEL, UNDEL);
  17.     objectop(i, SEL, SEL);
  18.     }
  19.     if (markon) markadd(markx, marky);
  20.     }
  21.  
  22. idle()
  23.     {
  24.     }
  25.