unity-atoms/Packages/BaseAtoms/Editor/Drawers/Collections/AtomListDrawer.cs
2020-03-21 21:58:41 +01:00

12 lines
321 B
C#

using UnityEditor;
using UnityEngine;
using UnityAtoms.Editor;
namespace UnityAtoms.BaseAtoms.Editor
{
/// <summary>
/// A custom property drawer for AtomBaseVariableList.
/// </summary>
[CustomPropertyDrawer(typeof(AtomBaseVariableList))]
public class AtomListDrawer : AtomListAttributeDrawer { }
}