canto/Assets/Scripts/Input/Atoms/Variables/ControlSchemeVariable.cs
2025-10-02 15:28:03 -04:00

19 lines
795 B
C#

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