// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. namespace Atom.Core.Game.Tutorial { public enum TutorialState { TS_PROGRESS = 0, TS_DONE = 1, TS_SKIP = 2, TS_EXCEPTION = 3, TS_MAX = 4 } }