#region File Description //----------------------------------------------------------------------------- // ModifiedChestEntry.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- #endregion #region Using Statements using System; using System.Collections.Generic; using RolePlayingGameData; #endregion namespace RolePlaying { /// /// A serializable description of the modified contents of a chest in the world. /// public class ModifiedChestEntry { /// /// The map and position of the modified chest. /// public WorldEntry WorldEntry = new WorldEntry(); /// /// The modified chest contents, replacing the previous contents. /// public List> ChestEntries = new List>(); /// /// The modified gold amount in the chest, replacing the previous amount. /// public int Gold = 0; } }