using UnityEditor;
using UnityAtoms.Editor;
namespace UnityAtoms.BaseAtoms.Editor
{
///
/// Variable Inspector of type `bool`. Inherits from `AtomVariableEditor`
///
[CustomEditor(typeof(BoolVariable))]
public sealed class BoolVariableEditor : AtomVariableEditor { }
}