| 1378 | //=========================================================================== |
| 1379 | |
| 1380 | static void parseUndefModel(FScanner& sc, FScriptPosition& pos) |
| 1381 | { |
| 1382 | int tile; |
| 1383 | if (!sc.GetNumber(tile, true)) return; |
| 1384 | if (!ValidateTilenum("undefmodel", tile, pos)) return; |
| 1385 | modelManager.UndefineTile(tile); |
| 1386 | } |
| 1387 | |
| 1388 | static void parseUndefModelRange(FScanner& sc, FScriptPosition& pos) |
| 1389 | { |
nothing calls this directly
no test coverage detected