| 13 | std::vector<Lemon::GUI::ContextMenuEntry> cxt; |
| 14 | |
| 15 | void OnPaint(surface_t* surface){ |
| 16 | Lemon::Graphics::DrawRect(0, 0, 640, 480, 255, 0, 0, surface); |
| 17 | } |
| 18 | |
| 19 | int main(){ |
| 20 | Lemon::GUI::Window* win = new Lemon::GUI::Window("Test Window", {640, 480}, WINDOW_FLAGS_RESIZABLE, Lemon::GUI::WindowType::GUI); |
nothing calls this directly
no test coverage detected