From de29b11a88dbdd3af0824e59b51528b91ee73c54 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 30 Nov 2017 22:49:38 +0100 Subject: First commit. Version works on Linux (keyboard only, not configurable) --- src/effect.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/effect.h (limited to 'src/effect.h') diff --git a/src/effect.h b/src/effect.h new file mode 100644 index 0000000..afbc630 --- /dev/null +++ b/src/effect.h @@ -0,0 +1,31 @@ +#ifndef EFFECTS_H +#define EFFECTS_H + +typedef struct { + int id, type; + double x, y, + vsp, hsp, grav, + imageIndex, imageSpeed; + + int cropx, cropy; + int width, height; + int image, timer; + + int visible; + int val1; + int loop, frames; + int depth; +} Effect; + +void createEffect(int type, int x, int y); +void createEffectExtra(int t, int x, int y, double hsp, double vsp, int val); + +void effectStep(Effect* e); +void effectDraw(Effect* e); +void effectDestroy(int id); + +void createRockSmash(int x, int y); +void createSplash(int x, int y); +void createLavaSplash(int x, int y); + +#endif \ No newline at end of file -- cgit v1.2.3