diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-12-02 14:44:54 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-12-02 14:44:54 +0100 |
commit | df3eb74930491458f97a3328a68bf8526fef3caf (patch) | |
tree | 129dbc6e6d1c7c65af25d13427f92c45271f433e /include/mgui/list.h | |
parent | 14770f42df291753a240def91fb488a904a909c1 (diff) |
list set items position with rendering
Diffstat (limited to 'include/mgui/list.h')
-rw-r--r-- | include/mgui/list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mgui/list.h b/include/mgui/list.h index 1da326d..82efaf8 100644 --- a/include/mgui/list.h +++ b/include/mgui/list.h @@ -28,6 +28,7 @@ mgui_list* mgui_widget_to_list(mgui_widget *widget); void mgui_list_set_position(mgui_list *self, mgl_vec2i position); void mgui_list_append(mgui_list *self, mgui_widget *widget); void mgui_list_on_event(mgui_list *self, mgl_window *window, mgl_event *event); -void mgui_list_draw(mgui_list *self, mgl_window *window); +/* Returns the size of the widget */ +mgl_vec2i mgui_list_draw(mgui_list *self, mgl_window *window); #endif /* MGUI_LIST_H */ |