| 212 | struct DrawTextPredicate |
| 213 | { |
| 214 | void operator()(const CLevelDebug::STextItem& s) |
| 215 | { |
| 216 | HUD().Font().pFontMedium->SetAligment(CGameFont::alLeft); |
| 217 | HUD().Font().pFontMedium->SetColor(s.color); |
| 218 | HUD().Font().pFontMedium->OutSet(s.x, s.y); |
| 219 | HUD().Font().pFontMedium->OutNext(*(s.text)); |
| 220 | } |
| 221 | }; |
| 222 | |
| 223 | void CLevelDebug::CTextInfo::draw_text() |