using UnityEngine;
using System;
using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
///
/// Variable of type `ControlScheme`. Inherits from `AtomVariable<ControlScheme, ControlSchemePair, ControlSchemeEvent, ControlSchemePairEvent, ControlSchemeControlSchemeFunction>`.
///
[EditorIcon("atom-icon-lush")]
[CreateAssetMenu(menuName = "Unity Atoms/Variables/ControlScheme", fileName = "ControlSchemeVariable")]
public sealed class ControlSchemeVariable : AtomVariable
{
protected override bool ValueEquals(ControlScheme other)
{
throw new NotImplementedException();
}
}
}