summaryrefslogtreecommitdiff
path: root/game/shared/tfc/tfc_weapon_parse.cpp
blob: 3f137b45b09696d6e2fb3e612c999ff1691f67b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//========= 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 );
}