mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-07 16:06:41 +00:00
20 lines
488 B
C++
20 lines
488 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
#include "cbase.h"
|
|
#include "c_order_resupply.h"
|
|
|
|
|
|
IMPLEMENT_CLIENTCLASS_DT( C_OrderResupply, DT_OrderResupply, COrderResupply )
|
|
END_RECV_TABLE()
|
|
|
|
|
|
void C_OrderResupply::GetDescription( char *pDest, int bufferSize )
|
|
{
|
|
Q_strncpy( pDest, "Build Resupply Station Near Object", bufferSize );
|
|
}
|
|
|