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.
38 lines
820 B
38 lines
820 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef C_TF_CLASS_INFILTRATOR_H
|
||
|
#define C_TF_CLASS_INFILTRATOR_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "c_tf_playerclass.h"
|
||
|
#include "dt_recv.h"
|
||
|
|
||
|
class C_PlayerClassInfiltrator : public C_PlayerClass
|
||
|
{
|
||
|
|
||
|
DECLARE_CLASS( C_PlayerClassInfiltrator, C_PlayerClass );
|
||
|
|
||
|
public:
|
||
|
|
||
|
C_PlayerClassInfiltrator( C_BaseTFPlayer *pPlayer );
|
||
|
virtual ~C_PlayerClassInfiltrator();
|
||
|
|
||
|
DECLARE_PREDICTABLE();
|
||
|
|
||
|
PlayerClassInfiltratorData_t *GetClassData( void ) { return &m_ClassData; }
|
||
|
|
||
|
protected:
|
||
|
|
||
|
PlayerClassInfiltratorData_t m_ClassData;
|
||
|
};
|
||
|
|
||
|
EXTERN_RECV_TABLE( DT_PlayerClassInfiltratorData )
|
||
|
|
||
|
#endif // C_TF_CLASS_INFILTRATOR_H
|