[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>
11 lines
207 B
C#
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;
|
|
}
|