Files
SVSimServer/SVSim.BattleEngine/Engine/Wizard/AIEmoteSet.cs
gamer147 c88b8df409 cull(engine-cleanup): pass-8 phase-2 cascade round 3
[trim] fully-unreachable files deleted: 3
[trim] files edited: 6, files deleted: 0, nodes removed: 23
[type-trim] files edited: 0, types removed: 0

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-03 21:20:40 -04:00

11 lines
207 B
C#

using System.Collections.Generic;
namespace Wizard;
public class AIEmoteSet
{
private List<AIEmoteCmd> cmdList = new List<AIEmoteCmd>();
public IEnumerable<AIEmoteCmd> EmoteCmds => cmdList;
}