X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fcartoons.h;h=ff84dd0e2f78cf8f33a5501a58493282a64c320d;hb=013e137cafaa16827d0f27e10538b6e90ee0aed0;hp=073cc52bdd710307aafdacaeffcd06e96c72ffbc;hpb=90c3a49422dd88de77ffc7b8dd1d4f1d73d0d9a3;p=rocksndiamonds.git diff --git a/src/cartoons.h b/src/cartoons.h index 073cc52b..ff84dd0e 100644 --- a/src/cartoons.h +++ b/src/cartoons.h @@ -1,19 +1,26 @@ -/*********************************************************** -* Rocks'n'Diamonds -- McDuffin Strikes Back! * -*----------------------------------------------------------* -* (c) 1995-2006 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* 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 -void InitToons(void); + +/* 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 InitGlobalAnimations(void); +void DrawGlobalAnimations(int); #endif