LethalCompany/Lethal Company/ExportedProject/Assets/Plugins/Assembly-CSharp-firstpass/ES3Internal/ES3RefIdDictionary.cs
2023-12-22 18:30:10 -05:00

21 lines
438 B
C#

using System;
using System.ComponentModel;
using UnityEngine;
namespace ES3Internal
{
[Serializable]
[EditorBrowsable(EditorBrowsableState.Never)]
public class ES3RefIdDictionary : ES3SerializableDictionary<UnityEngine.Object, long>
{
protected override bool KeysAreEqual(UnityEngine.Object a, UnityEngine.Object b)
{
return a == b;
}
protected override bool ValuesAreEqual(long a, long b)
{
return a == b;
}
}
}