X-Git-Url: https://deadsoftware.ru/gitweb?p=flatwaifu.git;a=blobdiff_plain;f=src%2Ffx.h;h=f86ca9de2f8040e34fbfa474aaf4f18ba66bf97a;hp=3f773b9b893168bdd0cd4d2acc685975384867a1;hb=563dffaf02ff36da4054f937fcc9f99a072e15bf;hpb=534310c1f131bb9a53be865c32d90342ed026734 diff --git a/src/fx.h b/src/fx.h index 3f773b9..f86ca9d 100644 --- a/src/fx.h +++ b/src/fx.h @@ -19,22 +19,23 @@ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -// Effects +#ifndef FX_H_INLUDED +#define FX_H_INLUDED #define MAXFX 300 -#pragma pack(1) -typedef struct{ - int x,y,xv,yv; - char t,s; -}fx_t; -#pragma pack() +typedef struct { + int x, y, xv, yv; + char t, s; +} fx_t; extern fx_t fx[MAXFX]; -void FX_init(void); -void FX_alloc(void); -void FX_act(void); -void FX_tfog(int,int); -void FX_ifog(int,int); -void FX_bubble(int x,int y,int xv,int yv,int n); +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 */