mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-06 18:40:47 +00:00
14 lines
312 B
C#
14 lines
312 B
C#
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal class QSBTravelerController : NpcAnimController<TravelerController>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
// todo SendResyncInfo
|
|
}
|
|
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
=> AttachedObject._dialogueSystem;
|
|
}
|
|
}
|