20 lines
413 B
C#
20 lines
413 B
C#
// 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;
|
|
|
|
}
|
|
|
|
}
|