mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-31 04:12:52 -05:00
12 lines
337 B
C#
12 lines
337 B
C#
using UnityEditor;
|
|||
using UnityAtoms.Editor;
|
|||
|
|||
namespace UnityAtoms.BaseAtoms.Editor
|
|||
{
|
|||
/// <summary>
|
|||
/// Variable Inspector of type `double`. Inherits from `AtomVariableEditor`
|
|||
/// </summary>
|
|||
[CustomEditor(typeof(DoubleVariable))]
|
|||
public sealed class DoubleVariableEditor : AtomVariableEditor<double, DoublePair> { }
|
|||
}
|