ProjectDDD/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/UI/Unity UI/Dialogue/UnityUIRoot.cs

32 lines
611 B (Stored with Git LFS)
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
/// <summary>
/// Unity UI UIRoot wrapper for AbstractUIRoot.
/// </summary>
[System.Serializable]
public class UnityUIRoot : AbstractUIRoot
{
/// <summary>
/// Shows the root. In Unity UI, does nothing.
/// </summary>
public override void Show()
{
}
/// <summary>
/// Hides the root. In Unity UI, does nothing.
/// </summary>
public override void Hide()
{
}
}
}