| 1331 | } |
| 1332 | |
| 1333 | int GetKodObjectRadius(int type) |
| 1334 | { |
| 1335 | switch (type) |
| 1336 | { |
| 1337 | case kodPlayerBlocking: |
| 1338 | return 64; |
| 1339 | case kodExit: |
| 1340 | return 24; |
| 1341 | case kodMonsterGenerator: |
| 1342 | return 24; |
| 1343 | case kodEntrance: |
| 1344 | return 24; |
| 1345 | case kodExtraPreObject2: |
| 1346 | case kodExtraPreObject3: |
| 1347 | case kodExtraPreObject4: |
| 1348 | case kodObject: //objects run this value and higher |
| 1349 | default: |
| 1350 | return 24; |
| 1351 | } |
| 1352 | } |
| 1353 | |
| 1354 | int GetKodObjectColor(int type) |
| 1355 | { |
no outgoing calls
no test coverage detected