9 lines
325 B
C#
9 lines
325 B
C#
using KitsuneCafe.Input;
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Action of type `ControlSchemePair`. Inherits from `AtomAction<ControlSchemePair>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
public abstract class ControlSchemePairAction : AtomAction<ControlSchemePair> { }
|
|
}
|