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

22 lines
438 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
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;
}
}
}