aboutsummaryrefslogtreecommitdiff
path: root/src/animate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/animate.h')
-rw-r--r--src/animate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/animate.h b/src/animate.h
index 2323017..79b6174 100644
--- a/src/animate.h
+++ b/src/animate.h
@@ -18,7 +18,7 @@ struct Animation {
ANIM_SHINE,
ANIM_PULSE,
ANIM_GROUP_SHRINK,
- //ANIM_GROUP_GROW,
+ ANIM_GROUP_GROW,
} type;
gint64 start;
gint64 duration;
@@ -42,6 +42,8 @@ Animation *animation_pulse_create(gint64 duration);
Animation *animation_group_shrink_create(gint64 duration);
+Animation *animation_group_grow_create(gint64 duration);
+
void animation_destroy(Animation *anim);
#endif