summaryrefslogtreecommitdiffstats
path: root/src/graphics/common/water.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/common/water.h')
-rw-r--r--src/graphics/common/water.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/graphics/common/water.h b/src/graphics/common/water.h
index c0593a0..7a7ffef 100644
--- a/src/graphics/common/water.h
+++ b/src/graphics/common/water.h
@@ -29,20 +29,19 @@ class CSound;
-#define MAXWATERLINE 500
+const int MAXWATERLINE = 500;
-typedef struct
+struct WaterLine
{
short x, y; // beginning
short len; // length by x
float px1, px2, pz;
-}
-WaterLine;
+};
-#define MAXWATVAPOR 10
+const int MAXWATVAPOR = 10;
-typedef struct
+struct WaterVapor
{
bool bUsed;
ParticuleType type;
@@ -50,8 +49,7 @@ typedef struct
float delay;
float time;
float last;
-}
-WaterVapor;
+};
enum WaterType