| 35 | { |
| 36 | public: |
| 37 | MainMenuButton(int x, int y, u16 w, u16 h, const std::function<bool()>& callback, int image, |
| 38 | const std::string& text, FontSize size, PKSM_Color textColor, int imageY) |
| 39 | : Button(x, y, w, h, callback, ui_sheet_mainmenu_button_idx, text, size, textColor) |
| 40 | { |
| 41 | menuImage = image; |
| 42 | this->imageY = imageY; |
| 43 | } |
| 44 | |
| 45 | void draw() const override; |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected