1
0
mirror of https://github.com/misternebula/quantum-space-buddies.git synced 2025-02-17 15:40:56 +00:00

14 lines
314 B
C#
Raw Normal View History

2021-10-29 23:00:13 +01:00
namespace QSB.Animation.NPC.WorldObjects
2021-04-29 18:30:45 +01:00
{
2021-04-29 21:00:02 +01:00
internal class QSBTravelerController : NpcAnimController<TravelerController>
2021-04-29 18:30:45 +01:00
{
public override void SendInitialState(uint to)
{
2022-01-26 01:01:32 -08:00
// todo SendInitialState
}
2021-04-29 18:30:45 +01:00
public override CharacterDialogueTree GetDialogueTree()
2021-10-28 14:29:53 +01:00
=> AttachedObject._dialogueSystem;
2021-04-29 18:30:45 +01:00
}
}