Quake 4 integrated with DoomRTX

This commit is contained in:
Justin Marshall
2026-05-09 22:10:40 -07:00
parent 8c4a087aa9
commit d37f87e493
436 changed files with 277587 additions and 10254 deletions
+35
View File
@@ -0,0 +1,35 @@
//----------------------------------------------------------------
// VehicleStatic.h
//
// Copyright 2002-2004 Raven Software
//----------------------------------------------------------------
#ifndef __GAME_VEHICLESTATIC_H__
#define __GAME_VEHICLESTATIC_H__
#ifndef __GAME_VEHICLE_H__
#include "Vehicle.h"
#endif
class rvVehicleStatic : public rvVehicle
{
public:
CLASS_PROTOTYPE( rvVehicleStatic );
rvVehicleStatic ( void );
~rvVehicleStatic ( void );
void Spawn ( void );
virtual int AddDriver ( int position, idActor* driver );
virtual bool RemoveDriver ( int position, bool force = false );
virtual void UpdateHUD ( idActor* driver, idUserInterface* gui );
void Event_ScriptedAnim ( const char* animname, int blendFrames, bool loop, bool endWithIdle );
void Event_ScriptedDone ( void );
void Event_ScriptedStop ( void );
};
#endif // __GAME_VEHICLESTATIC_H__