mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
14 lines
372 B
C#
14 lines
372 B
C#
using OWML.Utils;
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal class QSBTravelerController : NpcAnimController<TravelerController>
|
|
{
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
=> AttachedObject.GetValue<CharacterDialogueTree>("_dialogueSystem");
|
|
|
|
public override bool InConversation()
|
|
=> AttachedObject.GetValue<bool>("_talking");
|
|
}
|
|
}
|