NetworkSessionState.cs 575 B

12345678910111213141516171819202122232425262728
  1. namespace Microsoft.Xna.Framework.Net
  2. {
  3. /// <summary>
  4. /// Current state of a network session.
  5. /// </summary>
  6. public enum NetworkSessionState
  7. {
  8. /// <summary>
  9. /// Session is being created.
  10. /// </summary>
  11. Creating,
  12. /// <summary>
  13. /// Session is in the lobby, waiting for players.
  14. /// </summary>
  15. Lobby,
  16. /// <summary>
  17. /// Session is in an active game.
  18. /// </summary>
  19. Playing,
  20. /// <summary>
  21. /// Session has ended.
  22. /// </summary>
  23. Ended
  24. }
  25. }