Files
hl2_src-leak-2017/src/game/shared/tf2/tf_obj_manned_plasmagun_shared.h
BotoX 60f625f414 import hl2_src from full.7z
source: magnet:?xt=urn:btih:21DDA6847DDE983F2F8063739249D2D1D09A5DDA
2020-12-25 16:26:23 +01:00

51 lines
1.0 KiB
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: A stationary gun that players can man
//
// $NoKeywords: $
//=============================================================================//
#ifndef TF_OBJ_MANNED_PLASMAGUN_SHARED_H
#define TF_OBJ_MANNED_PLASMAGUN_SHARED_H
#ifdef _WIN32
#pragma once
#endif
#include "basetfvehicle.h"
class CMoveData;
enum MovementStyle_t
{
MOVEMENT_STYLE_STANDARD = 0,
MOVEMENT_STYLE_BARREL_PIVOT = 1,
MOVEMENT_STYLE_SIMPLE = 2,
};
struct MannedPlasmagunData_t : public VehicleBaseMoveData_t
{
float m_flGunYaw;
float m_flGunPitch;
float m_flBarrelPitch;
float m_flBarrelHeight;
int m_nBarrelPivotAttachment;
int m_nBarrelAttachment;
int m_nStandAttachment;
MovementStyle_t m_nMoveStyle;
};
class CObjectMannedPlasmagunMovement
{
public:
void ProcessMovement( CBasePlayer *pPlayer, CMoveData *pMove );
float GetMaxYaw() const;
float GetMinYaw() const;
float GetMaxPitch() const;
};
#endif // TF_OBJ_MANNED_PLASMAGUN_SHARED_H