quantum-space-buddies/QSB/Animation/NPC/WorldObjects/QSBCharacterAnimController.cs

12 lines
315 B
C#
Raw Normal View History

2022-01-13 04:58:38 +00:00
namespace QSB.Animation.NPC.WorldObjects
2021-04-26 13:30:21 +00:00
{
2021-04-29 17:30:45 +00:00
internal class QSBCharacterAnimController : NpcAnimController<CharacterAnimController>
2021-04-26 13:30:21 +00:00
{
2021-06-19 10:26:05 +00:00
public override CharacterDialogueTree GetDialogueTree()
2021-11-23 08:41:05 +00:00
=> AttachedObject._dialogueTree;
2021-04-29 19:59:25 +00:00
2021-06-19 10:26:05 +00:00
public override bool InConversation()
2021-11-23 08:41:05 +00:00
=> AttachedObject._inConversation;
2021-04-26 13:30:21 +00:00
}
}