using System.Collections.Generic; namespace Gameplay.Character { public class LTAnimLayerInfo { public int layerIndex; public readonly Dictionary stateMap; public LTAnimLayerInfo(int layerIndex) { this.layerIndex = layerIndex; stateMap = new Dictionary(); } } }