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