Download Tutorial C Files H Files

dg_animation_free

This function is used to destroy an animation.

Usage

void dg_animation_free(dg_animation_t *animation);

Example

dg_animation_free(animation);

Source code

void dg_animation_free(dg_animation_t *animation)
{
    free(animation);
}