ProjectDDD/Assets/Plugins/Pixel Crushers/Common/Wrappers/UI/InputActionRegistry.cs

18 lines
422 B
C#
Raw Normal View History

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.Wrappers
{
/// <summary>
/// Wrapper for InputActionRegistry to allow switching between
/// precompiled DLL and loose scripts.
/// </summary>
[AddComponentMenu("Pixel Crushers/Common/UI/Input Action Registry")]
public class InputActionRegistry : PixelCrushers.InputActionRegistry
{
}
}