#region File Description //----------------------------------------------------------------------------- // ContentObject.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- #endregion #region Using Statements using System; using Microsoft.Xna.Framework.Content; #endregion namespace RolePlayingGameData { /// /// Base type for all of the data types that load via the content pipeline. /// public abstract class ContentObject { /// /// The name of the content pipeline asset that contained this object. /// private string assetName; /// /// The name of the content pipeline asset that contained this object. /// [ContentSerializerIgnore] public string AssetName { get { return assetName; } set { assetName = value; } } } }