mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
24 lines
645 B
C++
24 lines
645 B
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#include "cbase.h"
|
|
#include "tf_weapon_bonesaw.h"
|
|
|
|
//=============================================================================
|
|
//
|
|
// Weapon Bonesaw tables.
|
|
//
|
|
|
|
IMPLEMENT_NETWORKCLASS_ALIASED( TFBonesaw, DT_TFWeaponBonesaw )
|
|
|
|
BEGIN_NETWORK_TABLE( CTFBonesaw, DT_TFWeaponBonesaw )
|
|
END_NETWORK_TABLE()
|
|
|
|
BEGIN_PREDICTION_DATA( CTFBonesaw )
|
|
END_PREDICTION_DATA()
|
|
|
|
LINK_ENTITY_TO_CLASS( tf_weapon_bonesaw, CTFBonesaw );
|
|
PRECACHE_WEAPON_REGISTER( tf_weapon_bonesaw ); |