mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-05 15:06:48 +00:00
29 lines
502 B
C++
29 lines
502 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#include "cbase.h"
|
|
#include <KeyValues.h>
|
|
#include "tfc_weapon_parse.h"
|
|
|
|
|
|
FileWeaponInfo_t* CreateWeaponInfo()
|
|
{
|
|
return new CTFCWeaponInfo;
|
|
}
|
|
|
|
|
|
CTFCWeaponInfo::CTFCWeaponInfo()
|
|
{
|
|
}
|
|
|
|
|
|
void CTFCWeaponInfo::Parse( KeyValues *pKeyValuesData, const char *szWeaponName )
|
|
{
|
|
BaseClass::Parse( pKeyValuesData, szWeaponName );
|
|
}
|
|
|
|
|