19 lines
727 B
C#
19 lines
727 B
C#
using UnityEngine;
|
|
using System;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Variable of type `ActionMap`. Inherits from `AtomVariable<ActionMap, ActionMapPair, ActionMapEvent, ActionMapPairEvent, ActionMapActionMapFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-lush")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Variables/ActionMap", fileName = "ActionMapVariable")]
|
|
public sealed class ActionMapVariable : AtomVariable<ActionMap, ActionMapPair, ActionMapEvent, ActionMapPairEvent, ActionMapActionMapFunction>
|
|
{
|
|
protected override bool ValueEquals(ActionMap other)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|