/*
Yarn Spinner is licensed to you under the terms found in the file LICENSE.md.
*/
#nullable enable
namespace Yarn.Unity
{
public class DialogueOption
{
///
/// The ID of this dialogue option
///
public int DialogueOptionID;
///
/// The ID of the dialogue option's text
///
public string TextID = "";
///
/// The line for this dialogue option
///
public LocalizedLine Line = LocalizedLine.InvalidLine;
///
/// Indicates whether this value should be presented as available
/// or not.
///
public bool IsAvailable;
}
}