mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
12 lines
321 B
C#
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 { }
|
|
} |