X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fcartoons.c;h=3ca6d20c0165cb84ace70a50dc8efad6c5d1aae4;hb=ae7adeb9c0b4cd7e530251f87f1349290db9eb35;hp=a0115cf98dce2b312824186ef95b8ac2afe3c2be;hpb=3ff2e8a0b5c27b99a9920bdf5ed82bc41bf40181;p=rocksndiamonds.git diff --git a/src/cartoons.c b/src/cartoons.c index a0115cf9..3ca6d20c 100644 --- a/src/cartoons.c +++ b/src/cartoons.c @@ -14,9 +14,6 @@ #include "tools.h" -/* values for toon definition */ -#define MAX_NUM_TOONS 20 - static struct ToonInfo toons[MAX_NUM_TOONS]; static void PrepareBackbuffer() @@ -71,3 +68,22 @@ void InitToons() REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE, GAME_FRAME_DELAY); } + +void DrawGlobalAnim() +{ +} + +void InitAnimation() +{ + HandleAnimation(ANIM_START); +} + +void StopAnimation() +{ + HandleAnimation(ANIM_STOP); +} + +void DoAnimation() +{ + HandleAnimation(ANIM_CONTINUE); +}