blob: 04c7ffac275adff06f95b7a5814918de82266236 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef C_ORDER_BUILDSENTRYGUN_H
#define C_ORDER_BUILDSENTRYGUN_H
#ifdef _WIN32
#pragma once
#endif
#include "c_order.h"
class C_OrderBuildSentryGun : public C_Order
{
public:
DECLARE_CLASS( C_OrderBuildSentryGun, C_Order );
DECLARE_CLIENTCLASS();
C_OrderBuildSentryGun();
// C_Order overrides.
public:
virtual void GetDescription( char *pDest, int bufferSize );
};
#endif // C_ORDER_BUILDSENTRYGUN_H
|