mirror of
https://github.com/ssstolk/rts4ds.git
synced 2025-06-19 01:15:32 -04:00
16 lines
373 B
C
16 lines
373 B
C
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2007-2025 Sander Stolk
|
|
|
|
#ifndef _ANIMATION_H_
|
|
#define _ANIMATION_H_
|
|
|
|
#include "game.h"
|
|
|
|
void drawAnimation();
|
|
void drawAnimationBG();
|
|
int doAnimationLogic();
|
|
void loadAnimationGraphics(enum GameState oldState);
|
|
int initAnimation(char *filename, int keepMainFree, int keepMusicFree, int keepSoundFree);
|
|
|
|
#endif
|