home *** CD-ROM | disk | FTP | other *** search
- #include "board.h"
- #include "pcx.h"
-
- //////////////////////////
- void Board::show()
- {
- Window::show();
- rect r = user_screen();
- r.origin.X = r.origin.X / 8 * 8 + 8;
- r.corner.X-= 8;
- int* cells = pScreenSet->get_cells(r);
- pcx_file_scr(picName, r.origin, cells);
- delete cells;
- }
- //////////////////////////////
-