Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
665 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #include "cbase.h"
  7. #include "fx_dod_shared.h"
  8. #include "weapon_dodfullauto.h"
  9. IMPLEMENT_NETWORKCLASS_ALIASED( DODFullAutoWeapon, DT_FullAutoWeapon )
  10. BEGIN_NETWORK_TABLE( CDODFullAutoWeapon, DT_FullAutoWeapon )
  11. END_NETWORK_TABLE()
  12. BEGIN_PREDICTION_DATA( CDODFullAutoWeapon )
  13. END_PREDICTION_DATA()
  14. CDODFullAutoWeapon::CDODFullAutoWeapon()
  15. {
  16. }
  17. void CDODFullAutoWeapon::Spawn()
  18. {
  19. BaseClass::Spawn();
  20. }
  21. void CDODFullAutoWeapon::PrimaryAttack( void )
  22. {
  23. BaseClass::PrimaryAttack();
  24. }