123456789101112131415161718192021222324252627282930313233 |
- #region File Description
- //-----------------------------------------------------------------------------
- // CombatEndingState.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System;
- #endregion
- namespace RolePlaying
- {
- enum CombatEndingState
- {
- /// <summary>
- /// All of the monsters died in combat.
- /// </summary>
- Victory,
- /// <summary>
- /// The party successfully fled from combat.
- /// </summary>
- Fled,
- /// <summary>
- /// All of the players died in combat.
- /// </summary>
- Loss,
- }
- }
|