CapersProject/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/UI/Unity UI/Quest/UnityUIQuestTitle.cs

20 lines
413 B
C#
Raw Normal View History

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
/// <summary>
/// This holds a quest title. It's automatically added to Track and Abandon
/// buttons to allow them to carry data about which quest they apply to.
/// </summary>
public class UnityUIQuestTitle : MonoBehaviour
{
public string questTitle;
}
}