1
This commit is contained in:
19
Src/Unity/Scripts/UX/Input/UXInputAction.cs
Normal file
19
Src/Unity/Scripts/UX/Input/UXInputAction.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.InputSystem;
|
||||
using UnityEngine.InputSystem.OnScreen;
|
||||
using UnityEngine.UIElements;
|
||||
|
||||
namespace BITKit.UX
|
||||
{
|
||||
public class UXInputAction:OnScreenControl
|
||||
{
|
||||
public UXInputAction(VisualElement visualElement,string controlPathInternal)
|
||||
{
|
||||
this.controlPathInternal = controlPathInternal;
|
||||
}
|
||||
protected sealed override string controlPathInternal { get; set; }
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user