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.

28 lines
502 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #include "cbase.h"
  7. #include <KeyValues.h>
  8. #include "tfc_weapon_parse.h"
  9. FileWeaponInfo_t* CreateWeaponInfo()
  10. {
  11. return new CTFCWeaponInfo;
  12. }
  13. CTFCWeaponInfo::CTFCWeaponInfo()
  14. {
  15. }
  16. void CTFCWeaponInfo::Parse( KeyValues *pKeyValuesData, const char *szWeaponName )
  17. {
  18. BaseClass::Parse( pKeyValuesData, szWeaponName );
  19. }