unity-atoms/Packages/Mobile/Editor/Editors/Variables/TouchUserInputVariableEditor.cs
2020-03-02 19:36:52 +01:00

13 lines
399 B
C#

using UnityEditor;
using UnityAtoms.Editor;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile.Editor
{
/// <summary>
/// Variable Inspector of type `TouchUserInput`. Inherits from `AtomVariableEditor`
/// </summary>
[CustomEditor(typeof(TouchUserInputVariable))]
public sealed class TouchUserInputVariableEditor : AtomVariableEditor<TouchUserInput, TouchUserInputPair> { }
}