summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/UpgradePlayerDmg.cs
blob: 965a4409902050b6acc340f51f67768fa4e5b70f (plain)
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;

public class UpgradePlayerDmg : MonoBehaviour
{
	public float damageMultiplyer;

	private void OnEnable()
	{
		PlayerUpgradeManager.instance.playerDamageMultiplyer *= damageMultiplyer;
	}
}