#region File Description
//-----------------------------------------------------------------------------
// SaveGameDescription.cs
//
// Microsoft XNA Community Game Platform
// Copyright (C) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
#endregion
#region Using Statements
using System;
using System.Xml.Serialization;
#endregion
namespace RolePlaying
{
///
/// The description of a save game file.
///
///
/// This data is saved in a separate file, and loaded by
/// the Load and Save Game menu screens.
///
#if WINDOWS
[Serializable]
#endif
public class SaveGameDescription
{
///
/// The name of the save file with the game data.
///
public string FileName;
///
/// The short description of how far the player has progressed in the game.
///
/// Here, it's the current quest.
public string ChapterName;
///
/// The short description of how far the player has progressed in the game.
///
/// Here, it's the time played.
public string Description;
}
}