]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/vehicles/cl_vehicles.qh
Put pure entities in the very center of the map (corner has issues on some of the...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / vehicles / cl_vehicles.qh
index f91add3f1e81d970859c3d3a912c68017eb5300a..5293030c19fe9ecda1aad3c8e733edabc29eda72 100644 (file)
@@ -1,24 +1,12 @@
 #ifndef CL_VEHICLES_H
 #define CL_VEHICLES_H
 
-// vehicle cvars
-bool autocvar_cl_vehicles_alarm = 1;
-bool autocvar_cl_vehicles_hud_tactical = 1;
+vector vehicleHud_Size;
+vector vehicleHud_Pos;
 
-void Net_AuXair2(float bIsNew);
-
-void Net_VehicleSetup();
-
-void RaptorCBShellfragDraw();
+void RaptorCBShellfragDraw(entity this);
 void RaptorCBShellfragToss(vector _org, vector _vel, vector _ang);
 
-#define HUD_GETVEHICLESTATS \
-    int vh_health       = getstati(STAT_VEHICLESTAT_HEALTH);  \
-       float shield        = getstati(STAT_VEHICLESTAT_SHIELD);  \
-       noref int energy    = getstati(STAT_VEHICLESTAT_ENERGY);  \
-       noref float ammo1   = getstati(STAT_VEHICLESTAT_AMMO1);   \
-       noref float reload1 = getstati(STAT_VEHICLESTAT_RELOAD1); \
-       noref int ammo2     = getstati(STAT_VEHICLESTAT_AMMO2);   \
-       noref int reload2   = getstati(STAT_VEHICLESTAT_RELOAD2);
+#define weapon2mode STAT(VEHICLESTAT_W2MODE)
 
 #endif