24 lines
478 B
C#
24 lines
478 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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>();
|
|
}
|
|
|
|
}
|
|
}
|