| 664 | } |
| 665 | |
| 666 | void sqrdefault(sqr *s) |
| 667 | { |
| 668 | if(!s) return; |
| 669 | s->r = s->g = s->b = 150; |
| 670 | s->ftex = DEFAULT_FLOOR; |
| 671 | s->ctex = DEFAULT_CEIL; |
| 672 | s->wtex = s->utex = DEFAULT_WALL; |
| 673 | s->type = SOLID; |
| 674 | s->floor = 0; |
| 675 | s->ceil = 16; |
| 676 | s->vdelta = s->defer = s->tag = 0; |
| 677 | } |
| 678 | |
| 679 | bool worldbordercheck(int x1, int x2, int y1, int y2, int z1, int z2) // check for solid world border |
| 680 | { |
no outgoing calls
no test coverage detected