11 lines
210 B
C
11 lines
210 B
C
#ifndef ANIMATION_UTIL_H
|
|
#define ANIMATION_UTIL_H
|
|
|
|
#include "sprite.h"
|
|
#include "raylib.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
Animation *MirrorAnimations(Animation *originalAnimations, int count);
|
|
|
|
#endif |