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

9 lines
362 B
C#

using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Function x 2 of type `ControlScheme`. Inherits from `AtomFunction&lt;ControlScheme, ControlScheme&gt;`.
/// </summary>
[EditorIcon("atom-icon-sand")]
public abstract class ControlSchemeControlSchemeFunction : AtomFunction<ControlScheme, ControlScheme> { }
}