This commit is contained in:
Ulysse Cura 2026-07-21 15:25:45 +02:00
parent 4c829d1b46
commit eb4871ee3e
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ typedef void (*component_init_t)(component_t *component, va_list args);
typedef void (*component_update_t)(component_t *component);
// Component draw function. It is called in the main loop to draw the component on screen. This function is not necessary.
typedef void (*component_draw_t)(component_t *component);
// Component deleter function. It is called when the component is removed. It should free the data in the component data but not the component data itself.
// Component deleter function. It is called when the component is removed. It should free the data in the component data but not the component itself.
typedef void (*component_deleter_t)(component_t *component);
typedef struct component_t {