summaryrefslogtreecommitdiff
path: root/game/shared/tfc/tfc_weapon_parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/shared/tfc/tfc_weapon_parse.cpp')
-rw-r--r--game/shared/tfc/tfc_weapon_parse.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/game/shared/tfc/tfc_weapon_parse.cpp b/game/shared/tfc/tfc_weapon_parse.cpp
new file mode 100644
index 0000000..3f137b4
--- /dev/null
+++ b/game/shared/tfc/tfc_weapon_parse.cpp
@@ -0,0 +1,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 );
+}
+
+