X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fcartoons.h;h=a2dd0602d256459d645edaf75a0d8fd0fcdf9236;hp=fdde0cbc86789a1070a3d1cd78ab78a113e75fd1;hb=8ae535c1c76e1c33572afbcd4b2d3d9c3d7ba63e;hpb=823bddb0d9cc63ddda17a2cd20266aa3b82bde38 diff --git a/src/cartoons.h b/src/cartoons.h index fdde0cbc..a2dd0602 100644 --- a/src/cartoons.h +++ b/src/cartoons.h @@ -1,19 +1,29 @@ -/*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * -*----------------------------------------------------------* -* (c) 1995-98 Artsoft Entertainment * -* Holger Schemel * -* Oststrasse 11a * -* 33604 Bielefeld * -* phone: ++49 +521 290471 * -* email: aeglos@valinor.owl.de * -*----------------------------------------------------------* -* cartoons.h * -***********************************************************/ +// ============================================================================ +// Rocks'n'Diamonds - McDuffin Strikes Back! +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// cartoons.h +// ============================================================================ #ifndef CARTOONS_H #define CARTOONS_H + +/* values for global animations */ +#define ANIM_STATE_INACTIVE 0 +#define ANIM_STATE_RESTART (1 << 0) +#define ANIM_STATE_WAITING (1 << 1) +#define ANIM_STATE_RUNNING (1 << 2) + + +void InitToons(void); + +void DrawGlobalAnim(int); + void InitAnimation(void); void StopAnimation(void); void DoAnimation(void);