aboutsummaryrefslogtreecommitdiff
path: root/src/animate.h
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-03-17 15:20:03 +0100
committerFederico Angelilli <code@fedang.net>2024-03-17 15:20:03 +0100
commit44a9ccb0ca18314016ef10b4b1b1c7c958d9eabc (patch)
tree459cb397c045685a0fca59b1edf849965888f52f /src/animate.h
parent6e6992ec09edf79ef2cdcaf249e31809cf7d3145 (diff)
Add group grow animation
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