| 1396 | } |
| 1397 | |
| 1398 | static void parseUndefModelOf(FScanner& sc, FScriptPosition& pos) |
| 1399 | { |
| 1400 | int tile; |
| 1401 | if (!sc.GetNumber(tile, true)) return; |
| 1402 | if (!ValidateTilenum("undefmodelof", tile, pos)) return; |
| 1403 | pos.Message(MSG_WARNING, "undefmodelof: currently non-functional."); |
| 1404 | } |
| 1405 | |
| 1406 | //=========================================================================== |
| 1407 | // |
nothing calls this directly
no test coverage detected