CombatEndingState.cs 805 B

123456789101112131415161718192021222324252627282930313233
  1. #region File Description
  2. //-----------------------------------------------------------------------------
  3. // CombatEndingState.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System;
  11. #endregion
  12. namespace RolePlaying
  13. {
  14. enum CombatEndingState
  15. {
  16. /// <summary>
  17. /// All of the monsters died in combat.
  18. /// </summary>
  19. Victory,
  20. /// <summary>
  21. /// The party successfully fled from combat.
  22. /// </summary>
  23. Fled,
  24. /// <summary>
  25. /// All of the players died in combat.
  26. /// </summary>
  27. Loss,
  28. }
  29. }