// Copyright (c) Pixel Crushers. All rights reserved.
namespace PixelCrushers.DialogueSystem
{
///
/// Specifies how to set a Boolean value. Flip indicates to invert the current value.
///
public enum Toggle
{
///
/// Set Boolean to true
///
True,
///
/// Set boolean to false
///
False,
///
/// Invert the current value
///
Flip
}
}