19 lines
795 B
C#
19 lines
795 B
C#
using UnityEngine;
|
|
using System;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Variable of type `ControlScheme`. Inherits from `AtomVariable<ControlScheme, ControlSchemePair, ControlSchemeEvent, ControlSchemePairEvent, ControlSchemeControlSchemeFunction>`.
|
|
/// </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();
|
|
}
|
|
}
|
|
}
|