// Copyright (c) Pixel Crushers. All rights reserved. using UnityEngine; namespace PixelCrushers.DialogueSystem { /// /// 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. /// public class UnityUIQuestTitle : MonoBehaviour { public string questTitle; } }