// Copyright 2018 RED Software, LLC. All Rights Reserved. namespace IgniteEngine.Content.Tutorial { /// /// Represents the state of a character's tutorial instance. /// public enum TutorialState { TS_PROGRESS = 0, TS_DONE = 1, TS_SKIP = 2, TS_EXCEPTION = 3, TS_MAX = 4 } }