1
0
mirror of https://github.com/misternebula/quantum-space-buddies.git synced 2025-02-20 06:39:55 +00:00
2022-01-25 21:32:43 -08:00

14 lines
310 B
C#

namespace QSB.Animation.NPC.WorldObjects
{
internal class QSBTravelerController : NpcAnimController<TravelerController>
{
public override void SendResyncInfo(uint to)
{
// todo SendResyncInfo
}
public override CharacterDialogueTree GetDialogueTree()
=> AttachedObject._dialogueSystem;
}
}