about summary refs log tree commit diff
path: root/src/game/client/render.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-04-13 20:37:12 +0200
committeroy <Tom_Adams@web.de>2011-04-13 20:37:12 +0200
commit06115dd49dca2f8eb5f14606437e8fd20037cc4d (patch)
tree5ec4bca6158319b3f5285d7689c5f94ae8da8c93 /src/game/client/render.h
parent63e059b8fff6498e42b765a1dca000e53005ea77 (diff)
downloadzcatch-06115dd49dca2f8eb5f14606437e8fd20037cc4d.tar.gz
zcatch-06115dd49dca2f8eb5f14606437e8fd20037cc4d.zip
added "Whitespace and line Endings cleanup" by GreYFoX
Diffstat (limited to 'src/game/client/render.h')
-rw-r--r--src/game/client/render.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/game/client/render.h b/src/game/client/render.h
index fe8d2dd6..10705e56 100644
--- a/src/game/client/render.h
+++ b/src/game/client/render.h
@@ -19,7 +19,7 @@ public:
 		m_Size = 1.0f;
 		m_GotAirJump = 1;
 	};
-	
+
 	int m_Texture;
 	vec4 m_ColorBody;
 	vec4 m_ColorFeet;
@@ -32,10 +32,10 @@ enum
 {
 	SPRITE_FLAG_FLIP_Y=1,
 	SPRITE_FLAG_FLIP_X=2,
-	
+
 	LAYERRENDERFLAG_OPAQUE=1,
 	LAYERRENDERFLAG_TRANSPARENT=2,
-	
+
 	TILERENDERFLAG_EXTEND=4,
 };
 
@@ -45,7 +45,7 @@ class CRenderTools
 public:
 	class IGraphics *m_pGraphics;
 	class CUI *m_pUI;
-	
+
 	class IGraphics *Graphics() const { return m_pGraphics; }
 	class CUI *UI() const { return m_pUI; }
 
@@ -59,7 +59,7 @@ public:
 	// rects
 	void DrawRoundRect(float x, float y, float w, float h, float r);
 	void DrawRoundRectExt(float x, float y, float w, float h, float r, int Corners);
-	
+
 	void DrawUIRect(const CUIRect *pRect, vec4 Color, int Corners, float Rounding);
 
 	// larger rendering methods
@@ -75,8 +75,8 @@ public:
 
 	// helpers
 	void MapscreenToWorld(float CenterX, float CenterY, float ParallaxX, float ParallaxY,
-		float OffsetX, float OffsetY, float Aspect, float Zoom, float *pPoints);	
-	
+		float OffsetX, float OffsetY, float Aspect, float Zoom, float *pPoints);
+
 };
 
 #endif