mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2024-12-28 20:43:42 +01:00
27 lines
613 B
C
27 lines
613 B
C
#ifndef ANIMATION_H
|
|
#define ANIMATION_H
|
|
|
|
#include "config.h"
|
|
|
|
typedef struct {
|
|
unsigned char frame;
|
|
bopti_image_t *image;
|
|
unsigned char len;
|
|
unsigned short frame_ms;
|
|
int current_ms;
|
|
unsigned short width;
|
|
unsigned short height;
|
|
unsigned char wrap_dest;
|
|
} Animation;
|
|
|
|
/* TODO: Doc! */
|
|
void animation_new(Animation *animation, bopti_image_t *image,
|
|
unsigned char len, unsigned short frame_ms);
|
|
|
|
/* TODO: Doc! */
|
|
void animation_draw(Animation *animation, int x, int y);
|
|
|
|
/* TODO: Doc! */
|
|
void animation_update(Animation *animation, unsigned short frame_ms);
|
|
|
|
#endif
|