20 lines
396 B
C#
20 lines
396 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Gameplay.Character
|
|
{
|
|
public class LTAnimLayerInfo
|
|
{
|
|
|
|
public int layerIndex;
|
|
|
|
public readonly Dictionary<string, LTAnimStateInfo> stateMap;
|
|
|
|
public LTAnimLayerInfo(int layerIndex)
|
|
{
|
|
this.layerIndex = layerIndex;
|
|
stateMap = new Dictionary<string, LTAnimStateInfo>();
|
|
}
|
|
|
|
}
|
|
}
|