summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_order_repair.cpp
blob: 3ad2af7bbd2284be56f8643114d4694951953da9 (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_repair.h"


IMPLEMENT_CLIENTCLASS_DT( C_OrderRepair, DT_OrderRepair, COrderRepair )
END_RECV_TABLE()


void C_OrderRepair::GetDescription( char *pDest, int bufferSize )
{
	Q_strncpy( pDest, "Repair Structure", bufferSize );
}