summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_order_respawnstation.cpp
blob: 757f218a0f94f96e957053a15a2db39481b6cae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "c_order_respawnstation.h"


IMPLEMENT_CLIENTCLASS_DT( C_OrderRespawnStation, DT_OrderRespawnStation, COrderRespawnStation )
END_RECV_TABLE()


void C_OrderRespawnStation::GetDescription( char *pDest, int bufferSize )
{
	Q_strncpy( pDest, "Build Respawn Station Near Object", bufferSize );
}