mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-27 10:28:24 -05:00
14 lines
374 B
C#
14 lines
374 B
C#
using System;
|
|
using UnityAtoms.Mobile;
|
|
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `TouchUserInput`. Inherits from `AtomReference<TouchUserInput, TouchUserInputVariable>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class TouchUserInputReference : AtomReference<
|
|
TouchUserInput,
|
|
TouchUserInputVariable> { }
|
|
}
|