Files

12 lines
309 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AYellowpaper.SerializedCollections
{
public class SerializedDictionarySampleThree : MonoBehaviour
{
[SerializeField]
private SerializedDictionary<ScriptableObject, string> _nameOverrides;
}
}