///////////////////// Button /////////////////////
| 222 | // Button |
| 223 | ////////////////////////// |
| 224 | Button::Button(const char* _label, rect_t _bounds) : Widget(_bounds) { |
| 225 | label = _label; |
| 226 | labelLength = Graphics::GetTextLength(label.c_str()); |
| 227 | } |
| 228 | |
| 229 | void Button::DrawButtonBorders(surface_t* surface, bool white){ |
| 230 | vector2i_t btnPos = fixedBounds.pos; |
nothing calls this directly
no test coverage detected