Typo.
This commit is contained in:
parent
4c829d1b46
commit
eb4871ee3e
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue