///////////////////// Label /////////////////////
| 334 | // Label |
| 335 | ////////////////////////// |
| 336 | Label::Label(const char* _label, rect_t _bounds) : Widget(_bounds) { |
| 337 | label = _label; |
| 338 | } |
| 339 | |
| 340 | void Label::Paint(surface_t* surface){ |
| 341 | Graphics::DrawString(label.c_str(), fixedBounds.pos.x, fixedBounds.pos.y, textColour.r, textColour.g, textColour.b, surface); |
nothing calls this directly
no outgoing calls
no test coverage detected