From 34b699fc3b8c395120f2ca71519fb206f3f54a78 Mon Sep 17 00:00:00 2001 From: Christopher Date: Mon, 12 Sep 2016 13:08:03 +0100 Subject: [PATCH] CustomTag inherits from ICustomTag --- Assets/Fungus/Narrative/Scripts/CustomTag.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Narrative/Scripts/CustomTag.cs b/Assets/Fungus/Narrative/Scripts/CustomTag.cs index de1314ea..f4c283ef 100644 --- a/Assets/Fungus/Narrative/Scripts/CustomTag.cs +++ b/Assets/Fungus/Narrative/Scripts/CustomTag.cs @@ -10,7 +10,7 @@ namespace Fungus /// Create custom tags for use in Say text. /// [ExecuteInEditMode] - public class CustomTag : MonoBehaviour + public class CustomTag : MonoBehaviour, ICustomTag { [Tooltip("String that defines the start of the tag.")] [SerializeField] protected string tagStartSymbol;