quantum-space-buddies/QSB/Animation/NPC/WorldObjects/QSBSolanumController.cs

12 lines
314 B
C#
Raw Normal View History

2022-03-03 03:46:33 +00:00
namespace QSB.Animation.NPC.WorldObjects;
internal class QSBSolanumController : NpcAnimController<NomaiConversationManager>
2021-10-28 13:29:27 +00:00
{
2022-03-03 03:46:33 +00:00
public override void SendInitialState(uint to)
2021-10-28 13:29:27 +00:00
{
2022-03-03 03:46:33 +00:00
// todo SendInitialState
}
2022-03-03 03:46:33 +00:00
public override CharacterDialogueTree GetDialogueTree()
=> AttachedObject._characterDialogueTree;
}