MCPcopy Create free account
hub / github.com/ZDoom/Raze / parseUndefModel

Function parseUndefModel

source/core/defparser.cpp:1380–1386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1378//===========================================================================
1379
1380static 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
1388static void parseUndefModelRange(FScanner& sc, FScriptPosition& pos)
1389{

Callers

nothing calls this directly

Calls 3

ValidateTilenumFunction · 0.85
UndefineTileMethod · 0.80
GetNumberMethod · 0.45

Tested by

no test coverage detected