CombatEndingState.cs 700 B

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