mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
13 lines
363 B
C#
13 lines
363 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 { }
|
||
|
}
|