| 1014 | } |
| 1015 | |
| 1016 | BOOL SolidLoc(int x, int y) |
| 1017 | { |
| 1018 | if (x < 0 || y < 0 || x >= MAXDUNX || y >= MAXDUNY) { |
| 1019 | return FALSE; |
| 1020 | } |
| 1021 | |
| 1022 | return nSolidTable[dPiece[x][y]]; |
| 1023 | } |
| 1024 | |
| 1025 | BOOL PlrDirOK(int pnum, int dir) |
| 1026 | { |
no outgoing calls
no test coverage detected