hexagram/src/anim.c

14 lines
236 B
C
Raw Normal View History

2024-01-19 16:33:54 -05:00
#include <stdlib.h>
#include <hexagram/anim.h>
void hexagram_anim_init(hexagram_anim *anim) {
anim->current = 0;
gettimeofday(&anim->start, NULL);
}
int hexagram_anim_step(hexagram_anim *anim, cairo_t *bg, cairo_t *fg) {
}