X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Ffx.h;h=5d2e4a7d6e44613c3ee2ea729db328001aa1bfa1;hb=2bb81ea2565c3627c954b5c37326db89b0048472;hp=784844a38f90358294fcb7949f0e420c4c7cb39d;hpb=a2115940e7643dcb1b87286f3d19fe95f7b79bd3;p=flatwaifu.git diff --git a/src/fx.h b/src/fx.h index 784844a..5d2e4a7 100644 --- a/src/fx.h +++ b/src/fx.h @@ -1,7 +1,6 @@ /* Copyright (C) Prikol Software 1996-1997 Copyright (C) Aleksey Volynskov 1996-1997 - Copyright (C) 2011 This file is part of the Doom2D:Rembo project. @@ -20,14 +19,29 @@ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -// Effects +#ifndef FX_H_INLUDED +#define FX_H_INLUDED + +#include // FILE #define MAXFX 300 -void FX_init(void); -void FX_alloc(void); -void FX_act(void); -void FX_draw(void); -void FX_tfog(int,int); -void FX_ifog(int,int); -void FX_bubble(int x,int y,int xv,int yv,int n); +#pragma pack(1) +typedef struct { + int x, y, xv, yv; + char t, s; +} fx_t; +#pragma pack() + +extern fx_t fx[MAXFX]; + +void FX_savegame (FILE *h); +void FX_loadgame (FILE *h); +void FX_alloc (void); +void FX_init (void); +void FX_act (void); +void FX_tfog (int x, int y); +void FX_ifog (int x, int y); +void FX_bubble (int x, int y, int xv, int yv, int n); + +#endif /* FX_H_INLUDED */