(int leafnum)
| 797 | } |
| 798 | |
| 799 | public int CM_LeafCluster(int leafnum) { |
| 800 | if (leafnum < 0 || leafnum >= numleafs) |
| 801 | Com.Error(Defines.ERR_DROP, "CM_LeafCluster: bad number"); |
| 802 | return map_leafs[leafnum].cluster; |
| 803 | } |
| 804 | |
| 805 | public int CM_LeafArea(int leafnum) { |
| 806 | if (leafnum < 0 || leafnum >= numleafs) |
no test coverage detected