// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.QuestMachine
{
///
/// Specifies how to inform listeners when setting a quest counter value.
///
public enum QuestCounterSetValueMode
{
///
/// Inform listeners and the data synchronizer if applicable.
///
InformListeners,
///
/// Don't inform listeners or the data synchronizer.
///
DontInformListeners,
///
/// Inform listeners but not the data synchronizer.
///
DontInformDataSync
}
}