using System.Collections.Generic; namespace Wizard; public class AIEmoteSet { private List cmdList = new List(); public IEnumerable EmoteCmds => cmdList; public void CreateFromAsset(List assetList) { cmdList.Clear(); foreach (AIEmoteDataAsset asset in assetList) { cmdList.Add(new AIEmoteCmd(asset)); } } }