mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
10 lines
320 B
C
10 lines
320 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
void setAnimation(char* path, size_t* w, size_t* h);
|
|
void setAnimationSize(size_t w, size_t h);
|
|
uint32_t* renderRLottieAnimation(uint32_t frameNum);
|
|
size_t getTotalFrame();
|
|
bool isAnimNULL();
|
|
void setAnimationColor(int r, int g, int b);
|
|
void freeAnimation(); |