h27387 s 00022/00000/00000 d D 1.1 91/03/08 04:40:28 hopkins 1 0 c date and time created 91/03/08 04:40:28 by hopkins e u U f e 0 t T I 1 boolean solid = false; void PaintBackground() { path(); setcolor(BG); fill(); } void Paint() { if (solid) PaintBackground(); } drawable hit(eventtype e) { drawable d = super.hit(e); return (solid || (d != self)) ? d : null; } E 1