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

32 lines
583 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.QuestMachine
{
public enum QuestMessageParticipant
{
/// <summary>
/// Accepts any object.
/// </summary>
Any,
/// <summary>
/// Must be the quester assigned to this quest.
/// </summary>
Quester,
/// <summary>
/// Must be this quest's quest giver.
/// </summary>
QuestGiver,
/// <summary>
/// Specified by ID.
/// </summary>
Other
}
}