mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 18:32:45 +00:00
14 lines
324 B
C#
14 lines
324 B
C#
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal class QSBSolanumController : NpcAnimController<NomaiConversationManager>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
// todo SendResyncInfo
|
|
}
|
|
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
=> AttachedObject._characterDialogueTree;
|
|
}
|
|
}
|