mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-05 22:09:59 +03:00
1
This commit is contained in:
27
game/client/tf2/c_order_resourcepump.cpp
Normal file
27
game/client/tf2/c_order_resourcepump.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
|
||||
#include "cbase.h"
|
||||
#include "c_order_resourcepump.h"
|
||||
#include "tf_hints.h"
|
||||
|
||||
|
||||
IMPLEMENT_CLIENTCLASS_DT( C_OrderResourcePump, DT_OrderResourcePump, COrderResourcePump )
|
||||
END_RECV_TABLE()
|
||||
|
||||
|
||||
C_OrderResourcePump::C_OrderResourcePump()
|
||||
{
|
||||
m_nHintID = TF_HINT_BUILDRESOURCEPUMP;
|
||||
}
|
||||
|
||||
|
||||
void C_OrderResourcePump::GetDescription( char *pDest, int bufferSize )
|
||||
{
|
||||
Q_strncpy( pDest, "Build Resource Pump", bufferSize );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user