#region File Description
//-----------------------------------------------------------------------------
// LayoutInfo.cs
//
// Microsoft XNA Community Game Platform
// Copyright (C) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
#endregion
#region Using Statements
using System;
#endregion
namespace MovipaLibrary
{
///
/// This class manages animation information of Layout.
/// The asset name for SceneData and the sequence name to be used
/// are managed in this class.
///
/// Layoutのアニメーション情報を持ちます。
/// SceneDataへのアセット名と、使用するシーケンス名があります。
///
public class LayoutInfo : AnimationInfo
{
#region Fields
private string sceneDataAsset;
private string sequence;
#endregion
#region Properties
///
/// Obtains or sets the asset name for the scene data.
///
/// シーンデータのアセット名を取得または設定します。
///
public string SceneDataAsset
{
get { return sceneDataAsset; }
set { sceneDataAsset = value; }
}
///
/// Obtains or sets the sequence name.
///
/// シーケンス名を取得または設定します。
///
public string Sequence
{
get { return sequence; }
set { sequence = value; }
}
#endregion
}
}