summary refs log tree commit diff
path: root/src/Decals.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-21 18:11:55 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-21 21:31:11 +0700
commit325dca9f212f9fd44cd10a8180529970c7a08c72 (patch)
treee1cfaec078dfa49f4d51d05eef8a5b0967843a41 /src/Decals.h
parent10f5376de856ecead4e8bbf66f19157f36f7a382 (diff)
downloadblackshades-1.2.0.tar.gz
Remove trailing whitespaces and duplicated blank lines 1.2.0
Diffstat (limited to 'src/Decals.h')
-rw-r--r--src/Decals.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/Decals.h b/src/Decals.h
index 127a6d2..e77195a 100644
--- a/src/Decals.h
+++ b/src/Decals.h
@@ -2,7 +2,7 @@
 #define _DECALS_H_
 
 #include "Quaternions.h"
-#ifdef OS9 
+#ifdef OS9
 #include <gl.h>
 #include <glu.h>
 #include "glut.h"
@@ -27,27 +27,27 @@ class Decals{
 				GLuint 				bulletholetextureptr;
 				GLuint 				cratertextureptr;
 				GLuint 				bloodtextureptr[11];
-				
+
 				int howmanydecals;
-				
+
 				int type[maxdecals];
-				
+
 				XYZ points[8*maxdecals];
 				int numpoints[maxdecals];
 				float texcoordsx[8*maxdecals];
 				float texcoordsy[8*maxdecals];
 				float alivetime[maxdecals];
-				
+
 				void draw();
-				
+
 				int DeleteDecal(int which);
 				int MakeDecal(int atype, XYZ location, float size, XYZ normal, int poly, Model *model, XYZ move, float rotation);
-				
+
 				void DoStuff();
 				void LoadBulletHoleTexture(char *fileName);
 				void LoadCraterTexture(char *fileName);
 				void LoadBloodTexture(char *fileName, int which);
-				
+
 				~Decals() {
 					glDeleteTextures( 1, (const GLuint *)bulletholetextureptr );
 					glDeleteTextures( 1, (const GLuint *)cratertextureptr );
@@ -56,4 +56,3 @@ class Decals{
 };
 
 #endif
-