| 265 | } |
| 266 | |
| 267 | void CUi::DebugRender(float X, float Y) |
| 268 | { |
| 269 | MapScreen(); |
| 270 | |
| 271 | char aBuf[128]; |
| 272 | str_format(aBuf, sizeof(aBuf), "hot=%p nexthot=%p active=%p lastactive=%p", HotItem(), NextHotItem(), ActiveItem(), m_pLastActiveItem); |
| 273 | TextRender()->Text(X, Y, 10.0f, aBuf); |
| 274 | } |
| 275 | |
| 276 | bool CUi::MouseInside(const CUIRect *pRect) const |
| 277 | { |
no test coverage detected