]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/weapons/projectile.qh
#pragma once
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / weapons / projectile.qh
index 847f3db49d3f298945d16e3ba29250630bceef9b..66e1be4707629bffeee90a18f694373958a4a2b1 100644 (file)
@@ -1,5 +1,4 @@
-#ifndef CLIENT_WEAPONS_PROJECTILE_H
-#define CLIENT_WEAPONS_PROJECTILE_H
+#pragma once
 
 entityclass(Projectile);
 class(Projectile).int traileffect;
@@ -17,7 +16,7 @@ class(Projectile).float gravity;
 class(Projectile).int snd_looping;
 class(Projectile).bool silent;
 
-void SUB_Stop();
+void SUB_Stop(entity this);
 
 void Projectile_ResetTrail(entity this, vector to);
 
@@ -27,10 +26,6 @@ void Projectile_Draw(entity this);
 
 void loopsound(entity e, int ch, string samp, float vol, float attn);
 
-void Ent_RemoveProjectile();
+void Ent_RemoveProjectile(entity this);
 
-void Ent_Projectile();
-
-void Projectile_Precache();
-
-#endif
+const int FL_PROJECTILE = BIT(15);