This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef C_OBJ_BASE_MANNED_GUN_H
#define C_OBJ_BASE_MANNED_GUN_H
#ifdef _WIN32
#pragma once
#endif
#include "basetfvehicle.h"
#include "tf_obj_manned_plasmagun_shared.h"
#include "ObjectControlPanel.h"
#include "tf_obj_base_manned_gun.h"
//-----------------------------------------------------------------------------
// Control screen
//-----------------------------------------------------------------------------
class CMannedPlasmagunControlPanel : public CRotatingObjectControlPanel
{
DECLARE_CLASS( CMannedPlasmagunControlPanel, CRotatingObjectControlPanel );
public:
CMannedPlasmagunControlPanel( vgui::Panel *parent, const char *panelName );
virtual bool Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData );
virtual void OnTick();
virtual void OnCommand( const char *command );
void GetInGun( void );
private:
vgui::Label *m_pMannedLabel;
vgui::Button *m_pOccupyButton;
};
#endif // C_OBJ_BASE_MANNED_GUN_H