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.
46 lines
1.1 KiB
46 lines
1.1 KiB
//========= Copyright © 1996-2005, 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
|