17 lines
385 B
C#
17 lines
385 B
C#
|
// Copyright (c) Pixel Crushers. All rights reserved.
|
|||
|
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace PixelCrushers.Wrappers
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Wrapper to retain references when switching between DLL and script.
|
|||
|
/// </summary>
|
|||
|
[AddComponentMenu("Pixel Crushers/Common/UI/Input Device Methods")]
|
|||
|
public class InputDeviceMethods : PixelCrushers.InputDeviceMethods
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
}
|