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();
}
}