ProjectDDD/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/UI/Abstract/Dialogue/CanvasDialogueUI.cs

16 lines
432 B (Stored with Git LFS)
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
/// <summary>
/// This abstract subclass of AbstractDialogueUI is used for dialogue UIs
/// that use a UI Canvas. It allows the Dialogue System to identify that
/// the dialogue UI requires a Canvas.
/// </summary>
public abstract class CanvasDialogueUI : AbstractDialogueUI
{
}
}