From 1cc8f72fb1c44e203a324e274038c2883c351fbb Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 28 Mar 2026 22:14:32 +0200 Subject: feat: Add animation capabilities with linear interpolation --- AnimationRender/AnimationRender.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 AnimationRender/AnimationRender.h (limited to 'AnimationRender/AnimationRender.h') diff --git a/AnimationRender/AnimationRender.h b/AnimationRender/AnimationRender.h new file mode 100644 index 0000000..19545ee --- /dev/null +++ b/AnimationRender/AnimationRender.h @@ -0,0 +1,9 @@ +#ifndef _ANIMATION_RENDER +#define _ANIMATION_RENDER + +#include "../global.h" +#include "FrameCallback.h" + +void RenderAnimation(u32 width, u32 height, u32 totalFrames, const FrameCallback** callbacks, usize sizeCallbacks); + +#endif /* _ANIMATION_RENDER */ -- cgit v1.2.3