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.
20 lines
517 B
20 lines
517 B
5 years ago
|
//========= 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 );
|
||
|
}
|
||
|
|