diff --git a/Assets/Fungus/Flowchart/Scripts/Block.cs b/Assets/Fungus/Flowchart/Scripts/Block.cs index 9ffa7367..021e1fec 100644 --- a/Assets/Fungus/Flowchart/Scripts/Block.cs +++ b/Assets/Fungus/Flowchart/Scripts/Block.cs @@ -6,6 +6,16 @@ using System.Collections.Generic; namespace Fungus { + /** + * The Sequence class has been renamed to Block to be more descriptive. + */ + [ExecuteInEditMode] + [RequireComponent(typeof(Flowchart))] + [AddComponentMenu("")] + [Obsolete("Use Block class instead")] + public class Sequence : Block + {} + [ExecuteInEditMode] [RequireComponent(typeof(Flowchart))] [AddComponentMenu("")]