unity-atoms/Packages/BaseAtoms/Editor/Editors/Variables/IntVariableEditor.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

12 lines
308 B
C#

using UnityEditor;
using UnityAtoms.Editor;
namespace UnityAtoms.BaseAtoms.Editor
{
/// <summary>
/// Variable Inspector of type `int`. Inherits from `AtomVariableEditor`
/// </summary>
[CustomEditor(typeof(IntVariable))]
public sealed class IntVariableEditor : AtomVariableEditor { }
}