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

12 lines
315 B
C#
Raw Normal View History

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