You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
628 B
32 lines
628 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include "cbase.h"
|
||
|
#include "tf_obj_armor_upgrade.h"
|
||
|
|
||
|
|
||
|
#define AERIAL_SENTRY_STATION_MODEL "models/objects/obj_aerial_sentry_station.mdl"
|
||
|
|
||
|
|
||
|
LINK_ENTITY_TO_CLASS( obj_armor_upgrade, CArmorUpgrade );
|
||
|
|
||
|
|
||
|
IMPLEMENT_SERVERCLASS_ST( CArmorUpgrade, DT_ArmorUpgrade )
|
||
|
END_SEND_TABLE()
|
||
|
|
||
|
|
||
|
CArmorUpgrade::CArmorUpgrade()
|
||
|
{
|
||
|
UseClientSideAnimation();
|
||
|
}
|
||
|
|
||
|
|
||
|
void CArmorUpgrade::Spawn()
|
||
|
{
|
||
|
SetModel( AERIAL_SENTRY_STATION_MODEL );
|
||
|
SetType( OBJ_ARMOR_UPGRADE );
|
||
|
}
|