summaryrefslogtreecommitdiff
path: root/game/shared/dod/weapon_dodfullauto_punch.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/shared/dod/weapon_dodfullauto_punch.h')
-rw-r--r--game/shared/dod/weapon_dodfullauto_punch.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/game/shared/dod/weapon_dodfullauto_punch.h b/game/shared/dod/weapon_dodfullauto_punch.h
new file mode 100644
index 0000000..5dcee58
--- /dev/null
+++ b/game/shared/dod/weapon_dodfullauto_punch.h
@@ -0,0 +1,34 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================//
+
+#include "cbase.h"
+#include "weapon_dodfullauto.h"
+
+#if defined( CLIENT_DLL )
+ #define CDODFullAutoPunchWeapon C_DODFullAutoPunchWeapon
+#endif
+
+class CDODFullAutoPunchWeapon : public CDODFullAutoWeapon
+{
+public:
+ DECLARE_CLASS( CDODFullAutoPunchWeapon, CDODFullAutoWeapon );
+ DECLARE_NETWORKCLASS();
+ DECLARE_PREDICTABLE();
+
+ CDODFullAutoPunchWeapon() {}
+
+ virtual void Spawn( void );
+ virtual void SecondaryAttack( void );
+ virtual bool Reload( void );
+ virtual void ItemBusyFrame( void );
+
+ virtual const char *GetSecondaryDeathNoticeName( void ) { return "punch"; }
+
+ virtual DODWeaponID GetWeaponID( void ) const { return WEAPON_NONE; }
+
+private:
+ CDODFullAutoPunchWeapon( const CDODFullAutoPunchWeapon & );
+}; \ No newline at end of file