NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Character/Anim/SaveLayerData.cs

17 lines
256 B
C#

using System;
using System.Collections.Generic;
namespace Gameplay.Character
{
[Serializable]
public class SaveLayerData
{
public int layerIndex;
public string layerName;
public List<LTAnimStateInfo> states;
}
}