returns the top edge of a hotspot
| 1015 | |
| 1016 | // returns the top edge of a hotspot |
| 1017 | int HotSpotT(int hotspot) { |
| 1018 | if (hotspot >= hotspotmap.num_of_hotspots) |
| 1019 | return -1; |
| 1020 | return hotspotmap.hs[hotspot].starting_y; |
| 1021 | } |
| 1022 | |
| 1023 | // returns the height of a hotspot |
| 1024 | int HotSpotH(int hotspot) { |
no outgoing calls
no test coverage detected