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
+46
View File
@@ -0,0 +1,46 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef DAMAGEMODIFIER_H
#define DAMAGEMODIFIER_H
#ifdef _WIN32
#pragma once
#endif
class CBaseEntity;
#include "ehandle.h"
//-----------------------------------------------------------------------------
// Purpose: Class handling generic damage modification to & from a player
//-----------------------------------------------------------------------------
class CDamageModifier
{
public:
CDamageModifier();
void AddModifierToEntity( CBaseEntity *pChar );
void RemoveModifier();
void SetModifier( float flDamageScale );
float GetModifier() const;
void SetDoneToMe( bool bDoneToMe );
bool IsDamageDoneToMe() const;
CBaseEntity *GetCharacter() const;
private:
float m_flModifier;
CHandle<CBaseEntity> m_hEnt;
bool m_bDoneToMe; // True = modifies damage done to the entity, false = damage done by the entity
};
#endif // DAMAGEMODIFIER_H