From a8665d204255b4b0ad9ae6982f77ecd5e053c1b6 Mon Sep 17 00:00:00 2001 From: Piotr Dziwinski Date: Mon, 11 Jun 2012 17:28:27 +0200 Subject: Changed #defined constants to consts; typedef struct -> struct --- src/graphics/common/water.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'src/graphics/common/water.h') 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 -- cgit v1.2.3-1-g7c22