Files
beyond/Assets/Plugins/Pixel Crushers/Quest Machine/Scripts/Quest Machine/CompletedQuestDialogueMode.cs
2024-11-20 15:21:28 +01:00

27 lines
587 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.QuestMachine
{
/// <summary>
/// Specifies what to show in dialogue when quest givers only have completed quests.
/// </summary>
public enum CompletedQuestGlobalDialogueMode
{
ShowCompletedQuest,
ShowNoQuests
}
/// <summary>
/// Allows a specific quest giver to override the global mode.
/// </summary>
public enum CompletedQuestDialogueMode
{
SameAsGlobal,
ShowCompletedQuest,
ShowNoQuests
}
}