You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
C++
13 lines
296 B
C++
#ifndef OPENMW_MWMECHANICS_DIFFICULTYSCALING_H
|
|
#define OPENMW_MWMECHANICS_DIFFICULTYSCALING_H
|
|
|
|
namespace MWWorld
|
|
{
|
|
class Ptr;
|
|
}
|
|
|
|
/// Scales damage dealt to an actor based on difficulty setting
|
|
float scaleDamage(float damage, const MWWorld::Ptr& attacker, const MWWorld::Ptr& victim);
|
|
|
|
#endif
|