DEADSOFTWARE

fix texture drawing
[flatwaifu.git] / src / fx.h
index 784844a38f90358294fcb7949f0e420c4c7cb39d..3f773b9b893168bdd0cd4d2acc685975384867a1 100644 (file)
--- 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) <ARembo@gmail.com> 2011
 
    This file is part of the Doom2D:Rembo project.
 
 
 #define MAXFX 300
 
+#pragma pack(1)
+typedef struct{
+  int x,y,xv,yv;
+  char t,s;
+}fx_t;
+#pragma pack()
+
+extern fx_t fx[MAXFX];
+
 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);