unity-atoms/Packages/BaseAtoms/Editor/Editors/Variables/GameObjectVariableEditor.cs
2020-03-02 19:36:52 +01:00

13 lines
376 B
C#

using UnityEditor;
using UnityAtoms.Editor;
using UnityEngine;
namespace UnityAtoms.BaseAtoms.Editor
{
/// <summary>
/// Variable Inspector of type `GameObject`. Inherits from `AtomVariableEditor`
/// </summary>
[CustomEditor(typeof(GameObjectVariable))]
public sealed class GameObjectVariableEditor : AtomVariableEditor<GameObject, GameObjectPair> { }
}