18 lines
431 B
C#
18 lines
431 B
C#
|
// Copyright (c) Pixel Crushers. All rights reserved.
|
|||
|
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace PixelCrushers.Wrappers
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Manages a UI panel. When the panel is active and on top, it ensures that one of
|
|||
|
/// its Selectables is selected if using joystick or keyboard.
|
|||
|
/// </summary>
|
|||
|
[AddComponentMenu("Pixel Crushers/Common/UI/UI Panel")]
|
|||
|
public class UIPanel : PixelCrushers.UIPanel
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
}
|