From df3eb74930491458f97a3328a68bf8526fef3caf Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 2 Dec 2021 14:44:54 +0100 Subject: list set items position with rendering --- include/mgui/widget.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/mgui/widget.h') diff --git a/include/mgui/widget.h b/include/mgui/widget.h index 60f850c..4ff394c 100644 --- a/include/mgui/widget.h +++ b/include/mgui/widget.h @@ -28,6 +28,7 @@ void mgui_widget_init(mgui_widget *self, mgui_widget_type type); void mgui_widget_set_margin(mgui_widget *self, int left, int top, int right, int bottom); void mgui_widget_set_position(mgui_widget *self, mgl_vec2i position); void mgui_widget_on_event(mgui_widget *self, mgl_window *window, mgl_event *event); -void mgui_widget_draw(mgui_widget *self, mgl_window *window); +/* Returns the size of the widget */ +mgl_vec2i mgui_widget_draw(mgui_widget *self, mgl_window *window); #endif /* MGUI_WIDGET_H */ -- cgit v1.2.3