ProjectDDD/Assets/Plugins/Pixel Crushers/Common/Wrappers/UI/InputActionRegistry.cs
2025-07-08 19:46:31 +09:00

18 lines
422 B
C#

// 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
{
}
}