LethalCompany/Lethal Company/ExportedProject/Assets/Plugins/Assembly-CSharp-firstpass/ES3Internal/ES3IdRefDictionary.cs

20 lines
362 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System;
using UnityEngine;
namespace ES3Internal
{
[Serializable]
public class ES3IdRefDictionary : ES3SerializableDictionary<long, UnityEngine.Object>
{
protected override bool KeysAreEqual(long a, long b)
{
return a == b;
}
protected override bool ValuesAreEqual(UnityEngine.Object a, UnityEngine.Object b)
{
return a == b;
}
}
}