summaryrefslogtreecommitdiff
path: root/Valheim_r202102_v0.141.2/Valheim/assembly_valheim/ZDOComparer.cs
blob: 68aad968109ca84fcda488262875e4368eb6a8eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

internal class ZDOComparer : IEqualityComparer<ZDO>
{
	public bool Equals(ZDO a, ZDO b)
	{
		return a == b;
	}

	public int GetHashCode(ZDO a)
	{
		return a.GetHashCode();
	}
}