// This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
namespace Fungus
{
///
/// Input handler for say dialogues.
///
public interface IDialogInput
{
///
/// Trigger next line input event from script.
///
void SetNextLineFlag();
///
/// Set the dialog clicked flag (usually from an Event Trigger component in the dialog UI).
///
void SetDialogClickedFlag();
///
/// Sets the button clicked flag.
///
void SetButtonClickedFlag();
}
///
/// Interface for listening for dialogue input events.
///
public interface IDialogInputListener
{
void OnNextLineEvent();
}
}