Christopher
8 years ago
3 changed files with 56 additions and 4 deletions
@ -0,0 +1,28 @@ |
|||||||
|
namespace Fungus |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// Create custom tags for use in Say text. |
||||||
|
/// </summary> |
||||||
|
public interface ICustomTag |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// String that defines the start of the tag. |
||||||
|
/// </summary> |
||||||
|
string TagStartSymbol { get; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// String that defines the end of the tag. |
||||||
|
/// </summary> |
||||||
|
string TagEndSymbol { get; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// String to replace the start tag with. |
||||||
|
/// </summary> |
||||||
|
string ReplaceTagStartWith { get; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// String to replace the end tag with. |
||||||
|
/// </summary> |
||||||
|
string ReplaceTagEndWith { get; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 59af36c15380c4854860339298d3779e |
||||||
|
timeCreated: 1473680400 |
||||||
|
licenseType: Free |
||||||
|
MonoImporter: |
||||||
|
serializedVersion: 2 |
||||||
|
defaultReferences: [] |
||||||
|
executionOrder: 0 |
||||||
|
icon: {instanceID: 0} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
Loading…
Reference in new issue