2
0

ScreenState.cs 515 B

1234567891011121314151617181920
  1. //-----------------------------------------------------------------------------
  2. // ScreenState.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. namespace RolePlaying
  8. {
  9. /// <summary>
  10. /// Enum describes the screen transition state.
  11. /// </summary>
  12. public enum ScreenState
  13. {
  14. TransitionOn,
  15. Active,
  16. TransitionOff,
  17. Hidden,
  18. }
  19. }