Christopher
8 years ago
3 changed files with 79 additions and 46 deletions
@ -0,0 +1,31 @@
|
||||
namespace Fungus |
||||
{ |
||||
/// <summary> |
||||
/// Input handler for say dialogues. |
||||
/// </summary> |
||||
public interface IDialogInput |
||||
{ |
||||
/// <summary> |
||||
/// Trigger next line input event from script. |
||||
/// </summary> |
||||
void SetNextLineFlag(); |
||||
|
||||
/// <summary> |
||||
/// Set the dialog clicked flag (usually from an Event Trigger component in the dialog UI). |
||||
/// </summary> |
||||
void SetDialogClickedFlag(); |
||||
|
||||
/// <summary> |
||||
/// Sets the button clicked flag. |
||||
/// </summary> |
||||
void SetButtonClickedFlag(); |
||||
} |
||||
|
||||
/// <summary> |
||||
/// Interface for listening for dialogue input events. |
||||
/// </summary> |
||||
public interface IDialogInputListener |
||||
{ |
||||
void OnNextLineEvent(); |
||||
} |
||||
} |
@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2 |
||||
guid: daaafdda848514f7caee7d3a2b70a30c |
||||
timeCreated: 1473680781 |
||||
licenseType: Free |
||||
MonoImporter: |
||||
serializedVersion: 2 |
||||
defaultReferences: [] |
||||
executionOrder: 0 |
||||
icon: {instanceID: 0} |
||||
userData: |
||||
assetBundleName: |
||||
assetBundleVariant: |
Loading…
Reference in new issue