mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-17 19:23:51 +02:00
21 lines
561 B
C++
21 lines
561 B
C++
#ifndef __HH_WEAPON_CRAWLERGRENADE_H
|
|
#define __HH_WEAPON_CRAWLERGRENADE_H
|
|
|
|
/***********************************************************************
|
|
|
|
hhWeaponCrawlerGrenade
|
|
|
|
***********************************************************************/
|
|
class hhWeaponCrawlerGrenade : public hhWeapon {
|
|
CLASS_PROTOTYPE( hhWeaponCrawlerGrenade );
|
|
|
|
public:
|
|
//rww - network friendliness
|
|
virtual void WriteToSnapshot( idBitMsgDelta &msg ) const;
|
|
virtual void ReadFromSnapshot( const idBitMsgDelta &msg );
|
|
|
|
protected:
|
|
void Event_SpawnBloodSpray();
|
|
};
|
|
|
|
#endif |