//----------------------------------------------------------------------------- // ScreenState.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace RolePlaying { /// /// Enum describes the screen transition state. /// public enum ScreenState { TransitionOn, Active, TransitionOff, Hidden, } }