mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-06 23:46:43 +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 );
|
||
|
}
|
||
|
|
||
|
|