summaryrefslogtreecommitdiff
path: root/GameCode/Immunities.cs
blob: e35e4dd026a8da73d7c8dbd49443722e36e932a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Immunities
{
	public float time;

	public float dmg;

	public string name;

	public Immunities(float time, float dmg, string name)
	{
		this.time = time;
		this.dmg = dmg;
		this.name = name;
	}
}