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

9 lines
325 B
C#

using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Action of type `ControlSchemePair`. Inherits from `AtomAction&lt;ControlSchemePair&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class ControlSchemePairAction : AtomAction<ControlSchemePair> { }
}