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